de.crowdcode.kissmda.testapp.exceptions.CreateException Maven / Gradle / Ivy
/**
* Generated by KissMDA - Simple Java Cartridge - kissmda-cartridges-simple-java.
* KissMDA: http://kissmda.org
*
* DO NOT EDIT this file manually! All changes will be overwritten by next generation!
*
* Generation date: Tue May 20 17:15:11 CEST 2014.
*/
package de.crowdcode.kissmda.testapp.exceptions;
public class CreateException extends Exception {
private static final long serialVersionUID = 1L;
public CreateException() {
}
public CreateException(Throwable cause) {
super(cause);
}
public CreateException(String message) {
super(message);
}
public CreateException(String message, Throwable cause) {
super(message, cause);
}
}