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