
com.buabook.kdb.exceptions.KdbPublisherDoesNotExistException Maven / Gradle / Ivy
package com.buabook.kdb.exceptions;
/**
* KdbPublisherDoesNotExistException
* (c) 2014 - 2015 Sport Trades Ltd
*
* @author Jas Rajasansir
* @version 1.0.0
* @since 17 Apr 2014
*/
public class KdbPublisherDoesNotExistException extends RuntimeException {
private static final long serialVersionUID = 7539139533037035679L;
private static final String message = "There is no publisher available to the specified KDB process.";
public KdbPublisherDoesNotExistException() {
super(message);
}
public KdbPublisherDoesNotExistException(String arg0) {
super(message + " " +arg0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy