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

org.fabric3.spi.container.channel.HandlerCreationException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.fabric3.spi.container.channel;

import org.fabric3.spi.container.ContainerException;

/**
 * Raised when a transformer handler cannot be created.
 */
public class HandlerCreationException extends ContainerException {
    private static final long serialVersionUID = 395183055337627858L;

    public HandlerCreationException(String message) {
        super(message);
    }

    public HandlerCreationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy