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

com.erigir.wrench.drigo.DrigoException Maven / Gradle / Ivy

There is a newer version: 2.2.16+16
Show newest version
package com.erigir.wrench.drigo;

/**
 * Superclass of any exception thrown by Drigo - its a batch processor, so
 * this are all Runtime by default
 * 

* Created by cweiss on 8/5/15. */ public class DrigoException extends RuntimeException { public DrigoException() { } public DrigoException(String message) { super(message); } public DrigoException(String message, Throwable cause) { super(message, cause); } public DrigoException(Throwable cause) { super(cause); } public DrigoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy