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

org.continuousassurance.swamp.exceptions.SWAMPException Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package org.continuousassurance.swamp.exceptions;

/**
 * 

Created by Jeff Gaynor
* on 11/26/14 at 11:35 AM */ public class SWAMPException extends RuntimeException { public SWAMPException() { } public SWAMPException(String message) { super(message); } public SWAMPException(String message, Throwable cause) { super(message, cause); } public SWAMPException(Throwable cause) { super(cause); } public SWAMPException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy