All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brooklyn.util.flags.ClassCoercionException Maven / Gradle / Ivy

There is a newer version: 0.7.0-M1
Show newest version
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