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

org.continuousassurance.swamp.exceptions.ItemNotFoundException 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:36 AM */ public class ItemNotFoundException extends SWAMPException { public ItemNotFoundException() { } public ItemNotFoundException(String message) { super(message); } public ItemNotFoundException(String message, Throwable cause) { super(message, cause); } public ItemNotFoundException(Throwable cause) { super(cause); } public ItemNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy