com.buabook.kdb.exceptions.TableColumnAlreadyExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-kdb-communication Show documentation
Show all versions of java-kdb-communication Show documentation
Java library to publish data into and query data out of kdb+ processes (c) 2017 Sport Trades Ltd
The newest version!
package com.buabook.kdb.exceptions;
/**
* TableColumnAlreadyExistsException
* (c) 2015 Sport Trades Ltd
*
* @author Jas Rajasansir
* @version 1.0.0
* @since 6 Apr 2015
*/
public class TableColumnAlreadyExistsException extends RuntimeException {
private static final long serialVersionUID = -4365103741333373595L;
private static final String message = "This table already contains the specified column.";
public TableColumnAlreadyExistsException(String arg0) {
super(message + " " + arg0);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy