blueprint.sdk.util.queue.JdbcQueueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprint-sdk Show documentation
Show all versions of blueprint-sdk Show documentation
Personal library for Java development. Deployed on OSSRH for Apache Maven.
The newest version!
/*
License:
blueprint-sdk is licensed under the terms of Eclipse Public License(EPL) v1.0
(http://www.eclipse.org/legal/epl-v10.html)
Distribution:
Maven Central - https://search.maven.org/artifact/io.github.lempel/blueprint-sdk
MVN Repository - https://mvnrepository.com/artifact/io.github.lempel/blueprint-sdk
*/
package blueprint.sdk.util.queue;
/**
* Exception for JdbcQueue
*
* @author [email protected]
* @since 2013. 9. 4.
*/
public class JdbcQueueException extends RuntimeException {
private static final long serialVersionUID = 3168291844624116465L;
public JdbcQueueException(String message) {
super(message);
}
public JdbcQueueException(String message, Throwable cause) {
super(message, cause);
}
public JdbcQueueException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy