mirror of
https://bitbucket.org/Mattrixwv/javaclasses.git
synced 2025-12-06 23:13:57 -05:00
Updated libraries and increased test coverage
This commit is contained in:
@@ -1,17 +1,24 @@
|
||||
//JavaClasses/src/main/java/mattrixwv/Exceptions/InvalidResult.java
|
||||
//Matthew Ellison
|
||||
// Created: 08-24-20
|
||||
//Modified: 08-24-20
|
||||
//Modified: 04-13-23
|
||||
//This is an exception for an invalid result out of one of my algorithms
|
||||
package com.mattrixwv.exceptions;
|
||||
|
||||
|
||||
public class InvalidResult extends RuntimeException{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public InvalidResult(){
|
||||
super();
|
||||
}
|
||||
public InvalidResult(String msg){
|
||||
super(msg);
|
||||
}
|
||||
public InvalidResult(Throwable cause){
|
||||
super(cause);
|
||||
}
|
||||
public InvalidResult(String msg, Throwable cause){
|
||||
super(msg, cause);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user