mirror of
https://bitbucket.org/Mattrixwv/matrix.git
synced 2025-12-06 15:03:58 -05:00
Added power function
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
//Matrix/src/main/java/com/mattrixwv/matrix/exceptions/InvalidScalarException.java
|
||||
//Mattrixwv
|
||||
// Created: 02-07-22
|
||||
//Modified: 02-07-22
|
||||
package com.mattrixwv.matrix.exceptions;
|
||||
|
||||
|
||||
public class InvalidScalarException extends RuntimeException{
|
||||
public static final long serialVersionUID = 1;
|
||||
|
||||
public InvalidScalarException(){
|
||||
super();
|
||||
}
|
||||
public InvalidScalarException(String message){
|
||||
super(message);
|
||||
}
|
||||
public InvalidScalarException(Throwable throwable){
|
||||
super(throwable);
|
||||
}
|
||||
public InvalidScalarException(String message, Throwable throwable){
|
||||
super(message, throwable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user