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

io.castled.exceptions.CastledRuntimeException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.exceptions;

public class CastledRuntimeException extends RuntimeException {

    public CastledRuntimeException(String message) {
        super(message);
    }

    public CastledRuntimeException(Throwable cause) {
        super(cause);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy