Added logging
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
//CipherStreamJava/src/main/java/com/mattrixwv/cipherstream/exceptions/InvalidKeyException.java
|
||||
//Matrixwv
|
||||
// Created: 07-09-22
|
||||
//Modified: 07-09-22
|
||||
package com.mattrixwv.cipherstream.exceptions;
|
||||
|
||||
|
||||
public class InvalidKeyException extends RuntimeException{
|
||||
public InvalidKeyException(){
|
||||
super();
|
||||
}
|
||||
public InvalidKeyException(String message){
|
||||
super(message);
|
||||
}
|
||||
public InvalidKeyException(Throwable error){
|
||||
super(error);
|
||||
}
|
||||
public InvalidKeyException(String message, Throwable error){
|
||||
super(message, error);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user