brooklyn.util.flags.ClassCoercionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-core Show documentation
Show all versions of brooklyn-core Show documentation
Entity implementation classes, events, and other core elements
package brooklyn.util.flags;
/**
* Thrown to indicate that {@link TypeCoercions} could not cast an object from one
* class to another.
*/
public class ClassCoercionException extends ClassCastException {
public ClassCoercionException() {
super();
}
/**
* Constructs a ClassCoercionException
with the specified
* detail message.
*
* @param s the detail message.
*/
public ClassCoercionException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy