com.bigdata.bop.NoSuchBOpException Maven / Gradle / Ivy
package com.bigdata.bop;
/**
* Exception thrown when there is no {@link BOp} in an operator tree having the
* desired {@link BOp.Annotations#BOP_ID}.
*
* @author Bryan Thompson
* @version $Id$
*/
public class NoSuchBOpException extends RuntimeException {
/**
* @param msg
*/
public NoSuchBOpException(Integer id) {
super("id=" + id);
}
private static final long serialVersionUID = 1L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy