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

com.sun.xml.ws.server.sei.DispatchException Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.sun.xml.ws.server.sei;

import com.sun.xml.ws.api.message.Message;

/**
 * {@link Exception} that demands a specific fault message to be sent back.
 *
 * TODO: think about a way to generalize it, as it seems to be useful
 * in other places.
 *
 * @author Kohsuke Kawaguchi
 */
final class DispatchException extends Exception {
    final Message fault;

    public DispatchException(Message fault) {
        this.fault = fault;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy