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

goja.core.exceptions.FailToCastObjectException Maven / Gradle / Ivy

package goja.core.exceptions;

@SuppressWarnings("serial")
public class FailToCastObjectException extends RuntimeException {

    public FailToCastObjectException(Throwable cause, String fmt, Object... args) {
        super(String.format(fmt, args), cause);
    }

    public FailToCastObjectException(String fmt, Object... args) {
        super(String.format(fmt, args));
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy