Added logging

This commit is contained in:
2022-07-09 16:55:32 -04:00
parent e9c8397b86
commit 2d7382ba8f
44 changed files with 2341 additions and 1265 deletions

View File

@@ -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);
}
}