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

com.fastchar.exception.FastEnhancerException Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.fastchar.exception;

public class FastEnhancerException extends RuntimeException {
    private static final long serialVersionUID = 2443853681011977165L;

    public FastEnhancerException() {
        super();
    }

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

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

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

    protected FastEnhancerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy