Fix build warnings
This commit is contained in:
@@ -1,7 +1,3 @@
|
|||||||
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidCoordinatesException.java
|
|
||||||
//Mattrixwv
|
|
||||||
// Created: 02-01-22
|
|
||||||
//Modified: 08-08-24
|
|
||||||
package com.mattrixwv.matrix.exceptions;
|
package com.mattrixwv.matrix.exceptions;
|
||||||
|
|
||||||
|
|
||||||
@@ -11,12 +7,6 @@ package com.mattrixwv.matrix.exceptions;
|
|||||||
* @author Mattrixwv
|
* @author Mattrixwv
|
||||||
*/
|
*/
|
||||||
public class InvalidCoordinatesException extends RuntimeException{
|
public class InvalidCoordinatesException extends RuntimeException{
|
||||||
/**
|
|
||||||
* Serialization identifier for this class.
|
|
||||||
*/
|
|
||||||
public static final long serialVersionUID = 1;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code InvalidCoordinatesException} with {@code null} as its detail message.
|
* Constructs a new {@code InvalidCoordinatesException} with {@code null} as its detail message.
|
||||||
* The cause is not initialized, and may subsequently be initialized by a call to {@link #initCause}.
|
* The cause is not initialized, and may subsequently be initialized by a call to {@link #initCause}.
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidGeometryException.java
|
|
||||||
//Mattrixwv
|
|
||||||
// Created: 02-01-22
|
|
||||||
//Modified: 08-08-24
|
|
||||||
package com.mattrixwv.matrix.exceptions;
|
package com.mattrixwv.matrix.exceptions;
|
||||||
|
|
||||||
|
|
||||||
@@ -11,12 +7,6 @@ package com.mattrixwv.matrix.exceptions;
|
|||||||
* @author Mattrixwv
|
* @author Mattrixwv
|
||||||
*/
|
*/
|
||||||
public class InvalidGeometryException extends RuntimeException{
|
public class InvalidGeometryException extends RuntimeException{
|
||||||
/**
|
|
||||||
* Serialization identifier for this class.
|
|
||||||
*/
|
|
||||||
public static final long serialVersionUID = 1;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code InvalidGeometryException} with {@code null} as its detail message.
|
* Constructs a new {@code InvalidGeometryException} with {@code null} as its detail message.
|
||||||
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidRowSizeException.java
|
|
||||||
//Mattrixwv
|
|
||||||
// Created: 02-01-22
|
|
||||||
//Modified: 08-08-24
|
|
||||||
package com.mattrixwv.matrix.exceptions;
|
package com.mattrixwv.matrix.exceptions;
|
||||||
|
|
||||||
|
|
||||||
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
|
|||||||
* Exception thrown to indicate that the size of a row is invalid for a given matrix.
|
* Exception thrown to indicate that the size of a row is invalid for a given matrix.
|
||||||
*/
|
*/
|
||||||
public class InvalidRowSizeException extends RuntimeException{
|
public class InvalidRowSizeException extends RuntimeException{
|
||||||
/**
|
|
||||||
* Serialization identifier for this class.
|
|
||||||
*/
|
|
||||||
public static final long serialVersionUID = 1;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code InvalidRowSizeException} with {@code null} as its detail message.
|
* Constructs a new {@code InvalidRowSizeException} with {@code null} as its detail message.
|
||||||
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
//Matrix/src/main/java/com/mattrixwv/matrix/exceptions/InvalidScalarException.java
|
|
||||||
//Mattrixwv
|
|
||||||
// Created: 02-07-22
|
|
||||||
//Modified: 08-08-24
|
|
||||||
package com.mattrixwv.matrix.exceptions;
|
package com.mattrixwv.matrix.exceptions;
|
||||||
|
|
||||||
|
|
||||||
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
|
|||||||
* Exception thrown to indicate that a scalar value passed to a matrix is invalid
|
* Exception thrown to indicate that a scalar value passed to a matrix is invalid
|
||||||
*/
|
*/
|
||||||
public class InvalidScalarException extends RuntimeException{
|
public class InvalidScalarException extends RuntimeException{
|
||||||
/**
|
|
||||||
* Serialization identifier for this class.
|
|
||||||
*/
|
|
||||||
public static final long serialVersionUID = 1;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code InvalidScalarException} with {@code null} as its detail message.
|
* Constructs a new {@code InvalidScalarException} with {@code null} as its detail message.
|
||||||
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
//Matrix/src/main/java/com/mattrixwv/exceptions/NullMatrixException.java
|
|
||||||
//Mattrixwv
|
|
||||||
// Created: 06-30-22
|
|
||||||
//Modified: 08-08-24
|
|
||||||
package com.mattrixwv.matrix.exceptions;
|
package com.mattrixwv.matrix.exceptions;
|
||||||
|
|
||||||
|
|
||||||
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
|
|||||||
* Exception thrown to indicate that a null matrix has been illegally passed to a method
|
* Exception thrown to indicate that a null matrix has been illegally passed to a method
|
||||||
*/
|
*/
|
||||||
public class NullMatrixException extends RuntimeException{
|
public class NullMatrixException extends RuntimeException{
|
||||||
/**
|
|
||||||
* Serialization identifier for this class.
|
|
||||||
*/
|
|
||||||
public static final long serialVersionUID = 1;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code NullMatrixException} with {@code null} as its detail message.
|
* Constructs a new {@code NullMatrixException} with {@code null} as its detail message.
|
||||||
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.
|
||||||
|
|||||||
Reference in New Issue
Block a user