Updated for SonarQube findings

This commit is contained in:
2022-07-03 17:45:08 -04:00
parent a7333c5f3e
commit 4b738d2817
11 changed files with 3896 additions and 962 deletions

View File

@@ -0,0 +1,23 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/NullMatrixException.java
//Mattrixwv
// Created: 06-30-22
//Modified: 06-30-22
package com.mattrixwv.matrix.exceptions;
public class NullMatrixException extends RuntimeException{
public static final long serialVersionUID = 1;
public NullMatrixException(){
super();
}
public NullMatrixException(String message){
super(message);
}
public NullMatrixException(Throwable throwable){
super(throwable);
}
public NullMatrixException(String message, Throwable throwable){
super(message, throwable);
}
}