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

org.cuberact.tools.bytes.ByteException Maven / Gradle / Ivy

package org.cuberact.tools.bytes;

public final class ByteException extends RuntimeException {
    ByteException(final String message) {
        super(message);
    }

    ByteException(final Throwable t) {
        super(t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy