com.sun.xml.bind.api.AccessorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb-impl Show documentation
Show all versions of jaxb-impl Show documentation
Old JAXB Runtime module. Contains sources required for runtime processing.
/*
* Copyright (c) 1997, 2021 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.bind.api;
/**
* Signals an error in {@link RawAccessor}.
*
*
* This error is not reported to the user handler. Once reported
* the error should be wrapped into another exception.
*
*
* This exception happens primarily when JAXB accesses the getter/setter
* method and it throws a checked exception.
*
*
* Subject to change without notice.
*
* @author Kohsuke Kawaguchi
*
* @since 2.0 EA1
*/
public final class AccessorException extends Exception {
public AccessorException() {
}
public AccessorException(String message) {
super(message);
}
public AccessorException(String message, Throwable cause) {
super(message, cause);
}
public AccessorException(Throwable cause) {
super(cause);
}
}