Added start of integer matrix

This commit is contained in:
2022-02-02 22:10:46 -05:00
parent e5efca7056
commit b5bfbf71f4
6 changed files with 1246 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidCoordinates.java
//Mattrixwv
// Created: 02-01-22
//Modified: 02-01-22
package com.mattrixwv.matrix.exceptions;
public class InvalidCoordinatesException extends RuntimeException{
public InvalidCoordinatesException(){
super();
}
public InvalidCoordinatesException(String message){
super(message);
}
public InvalidCoordinatesException(Throwable throwable){
super(throwable);
}
public InvalidCoordinatesException(String message, Throwable throwable){
super(message, throwable);
}
}