mirror of
https://bitbucket.org/Mattrixwv/matrix.git
synced 2025-12-08 16:03: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);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidGeometryException.java
|
||||
//Mattrixwv
|
||||
// Created: 02-01-22
|
||||
//Modified: 02-02-22
|
||||
package com.mattrixwv.matrix.exceptions;
|
||||
|
||||
|
||||
public class InvalidGeometryException extends RuntimeException{
|
||||
public InvalidGeometryException(){
|
||||
super();
|
||||
}
|
||||
public InvalidGeometryException(String message){
|
||||
super(message);
|
||||
}
|
||||
public InvalidGeometryException(Throwable throwable){
|
||||
super(throwable);
|
||||
}
|
||||
public InvalidGeometryException(String message, Throwable throwable){
|
||||
super(message, throwable);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidRowSizeException.java
|
||||
//Mattrixwv
|
||||
// Created: 02-01-22
|
||||
//Modified: 02-01-22
|
||||
package com.mattrixwv.matrix.exceptions;
|
||||
|
||||
|
||||
public class InvalidRowSizeException extends RuntimeException{
|
||||
public InvalidRowSizeException(){
|
||||
super();
|
||||
}
|
||||
public InvalidRowSizeException(String message){
|
||||
super(message);
|
||||
}
|
||||
public InvalidRowSizeException(Throwable throwable){
|
||||
super(throwable);
|
||||
}
|
||||
public InvalidRowSizeException(String message, Throwable throwable){
|
||||
super(message, throwable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user