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

org.glassfish.jaxb.runtime.api.AccessorException Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
/*
 * Copyright (c) 1997, 2020 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 org.glassfish.jaxb.runtime.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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy