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

jakarta.xml.bind.DataBindingException Maven / Gradle / Ivy

/*
 * Copyright (c) 2006, 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 jakarta.xml.bind;

/**
 * Exception that represents a failure in a JAXB operation.
 *
 * 

* This exception differs from {@link JAXBException} in that * this is an unchecked exception, while {@code JAXBException} * is a checked exception. * * @see JAXB * @since 1.6, JAXB 2.1 */ public class DataBindingException extends RuntimeException { public DataBindingException(String message, Throwable cause) { super(message, cause); } public DataBindingException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy