Fixato bug e implementato alcune funzioni.

This commit is contained in:
2014-06-01 18:16:43 +02:00
parent 015d8cac76
commit e53f98a3a8
31 changed files with 910 additions and 151 deletions

View File

@@ -0,0 +1,11 @@
package exceptions;
public class InvalidKeyException extends RuntimeException {
public InvalidKeyException(String message) {
super (message);
}
public InvalidKeyException() {
super ("Invalid Key Exception");
}
}