com.sun.xml.ws.api.message.ExceptionHasMessage Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.api.message;
import com.sun.xml.ws.util.exception.JAXWSExceptionBase;
import com.sun.xml.ws.protocol.soap.VersionMismatchException;
/**
* This class represents an Exception that needs to be marshalled
* with a specific protocol wire format. For example, the SOAP's
* VersionMismatchFault needs to be written with a correct fault code.
* In that case, decoder could throw {@link VersionMismatchException},
* and the corresponding fault {@link Message} from {@link ExceptionHasMessage#getFaultMessage()}
* is sent on the wire.
*
* @author Jitendra Kotamraju
*/
public abstract class ExceptionHasMessage extends JAXWSExceptionBase {
public ExceptionHasMessage(String key, Object... args) {
super(key, args);
}
/**
* Returns the exception into a fault Message
*
* @return Message for this exception
*/
public abstract Message getFaultMessage();
}