be.jonaseveraert.util.arrays.OutputArraySizeTooLargeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jonas-utils Show documentation
Show all versions of jonas-utils Show documentation
This library is a collection of classes that I needed in my coding adventure. I hope it can help someone.
package be.jonaseveraert.util.arrays;
public class OutputArraySizeTooLargeException extends Exception {
public OutputArraySizeTooLargeException(String message) {
super(message);
}
public OutputArraySizeTooLargeException(String message, Throwable e) {
super(message, e);
}
}