Update to make maven 4 compliant

This commit is contained in:
2026-01-26 10:15:58 -05:00
parent 8877fc7193
commit 2828fd4f58
2 changed files with 206 additions and 144 deletions

View File

@@ -1,8 +1,3 @@
//JavaClasses/src/main/java/mattrixwv/Exceptions/InvalidResult.java
//Matthew Ellison
// Created: 08-24-20
//Modified: 08-11-24
//This is an exception for an invalid result out of one of my algorithms
package com.mattrixwv.exceptions;
@@ -17,6 +12,11 @@ package com.mattrixwv.exceptions;
* @see RuntimeException
*/
public class InvalidResult extends RuntimeException{
/**
* Serialization identifier for this class
*/
public static final long serialVersionUID = 1L;
/**
* Constructs a new runtime exception with {@code null} as its detail message.
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.