All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.jonaseveraert.util.arrays.OutputArraySizeTooLargeException Maven / Gradle / Ivy

Go to download

This library is a collection of classes that I needed in my coding adventure. I hope it can help someone.

There is a newer version: 1.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy