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

com.github.mkopylec.charon.exceptions.CharonException Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.github.mkopylec.charon.exceptions;

public class CharonException extends RuntimeException {

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

    public CharonException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy