mirror of
https://bitbucket.org/Mattrixwv/matrix.git
synced 2025-12-06 23:13:57 -05:00
Updated for SonarQube findings
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user