ru.whoisamyy.api.utils.exceptions.InvalidValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Geometry Dash kernel in java
package ru.whoisamyy.api.utils.exceptions;
public class InvalidValueException extends Exception {
public InvalidValueException(String message) {
super(message);
}
}