Fixed sonarqube findings
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user