com.sun.xml.ws.handler.HandlerException 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.handler;
import com.sun.istack.localization.Localizable;
import com.sun.xml.ws.util.exception.JAXWSExceptionBase;
/**
* Exception thrown by handler-related code. Extends
* {@link com.sun.xml.ws.util.exception.JAXWSExceptionBase}
* using the appropriate resource bundle.
*
* @see com.sun.xml.ws.util.exception.JAXWSExceptionBase
*
* @author WS Development Team
*/
public class HandlerException extends JAXWSExceptionBase {
public HandlerException(String key, Object... args) {
super(key, args);
}
public HandlerException(Throwable throwable) {
super(throwable);
}
public HandlerException(Localizable arg) {
super("handler.nestedError", arg);
}
public String getDefaultResourceBundleName() {
return "com.sun.xml.ws.resources.handler";
}
}