mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2025-10-16 11:45:37 +00:00
15 lines
331 B
Java
15 lines
331 B
Java
package jota.error;
|
|
|
|
/**
|
|
* This exception occurs when invalid trytes is provided.
|
|
* @author Adrian
|
|
*/
|
|
public class InvalidTrytesException extends BaseException {
|
|
|
|
/**
|
|
* Initializes a new instance of the InvalidTrytesException.
|
|
*/
|
|
public InvalidTrytesException() {
|
|
super("Invalid input trytes");
|
|
}
|
|
} |