mirror of
https://bitbucket.org/Mattrixwv/matrix.git
synced 2025-12-06 15:03:58 -05:00
24 lines
562 B
Java
24 lines
562 B
Java
//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);
|
|
}
|
|
}
|