Skip to content
Snippets Groups Projects
Select Git revision
  • 2a9dea016d8375c34a14e1d80a4dc29733bcc61c
  • master default protected
  • squashed
  • history
  • tourney_patches
5 results

passbook.c

  • Forked from Toby Murray / swen90006-a2-2019
    Source project has a limited visibility.
    WeakPassphraseException.java 510 B
    package swen90006.passbook;
    
    public class WeakPassphraseException extends Exception
    {
        public WeakPassphraseException (String passphrase)
        {
            super("Passphrase does not comply with the PassBook rules\n" +
    	      "\t- must contains at least " +
    	      PassBook.MINIMUM_PASSPHRASE_LENGTH + " characters\n" +
    	      "\t- must contain at least one numeric character\n" +
    	      "\t- must contain at least one lower case letter\n" +
    	      "\t- must contain at least one upper case letter\n");
        }
    }