Skip to content
Snippets Groups Projects
Select Git revision
  • d5e5e2a834a2f6766faa6f552fa85c86c2d17f79
  • master default protected
  • patch-2
  • patch-1
4 results

IncorrectPassphraseException.java

Blame
  • Forked from Tim Miller / SWEN90006-A1-2019
    Source project has a limited visibility.
    IncorrectPassphraseException.java 262 B
    package swen90006.passbook;
    
    public class IncorrectPassphraseException extends Exception 
    {
        public IncorrectPassphraseException(String username, String passphrase)
        {
            super("Incorrect passphrase: " + passphrase + " for user " + username);
        }
    }