JBIException.java :  » Workflow-Engines » Dalma » dalma » endpoints » jbi » Java Open Source

Java Open Source » Workflow Engines » Dalma 
Dalma » dalma » endpoints » jbi » JBIException.java
package dalma.endpoints.jbi;

/**
 * Represents an error in the JBI layer.
 *
 * @author Kohsuke Kawaguchi
 */
public class JBIException extends RuntimeException {
    public JBIException() {
    }

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

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

    public JBIException(Throwable cause) {
        super(cause);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.