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

com.devebot.opflow.exception.OpflowConstructorException Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package com.devebot.opflow.exception;

/**
 *
 * @author drupalex
 */
public class OpflowConstructorException extends OpflowAbstractException {

    public OpflowConstructorException() {
    }

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

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

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

    public OpflowConstructorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy