Fixed sonarqube findings

This commit is contained in:
2022-07-04 01:04:06 -04:00
parent 6f300a430a
commit b4817e8bb3
47 changed files with 289 additions and 311 deletions

View File

@@ -0,0 +1,21 @@
//CipherStreamJava/src/main/java/com/mattrixwv/CipherStreamJava/Exceptions/InvalidKeywordException.java
//Mattrixwv
// Created: 01-09-22
//Modified: 01-09-22
package com.mattrixwv.cipherstream.exceptions;
public class InvalidKeywordException extends RuntimeException{
public InvalidKeywordException(){
super();
}
public InvalidKeywordException(String message){
super(message);
}
public InvalidKeywordException(Throwable error){
super(error);
}
public InvalidKeywordException(String message, Throwable error){
super(message, error);
}
}