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

com.adobe.xmp.core.XMPException Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2012 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
package com.adobe.xmp.core;

/**
 * Exception class for all exceptions in XMPCore2.
 */
public class XMPException extends Exception
{
	private static final long serialVersionUID = -7198438977309224764L;

	@SuppressWarnings("javadoc")
	public XMPException()
	{
	}

	/**
	 * Constructs an exception with a message.
	 * @param message the message
	 */
	public XMPException(String message)
	{
	    super( message );
	}

	/**
	 * Constructs an exception with a Throwable
	 * @param cause the exception source
	 */
	public XMPException(Throwable cause)
	{
	    super( cause );
	}

	/**
	 * Constructs an exception with a message, and a Throwable
	 * @param message the error message.
	 * @param cause the exception source
	 */
	public XMPException(String message, Throwable cause)
	{
	    super( message, cause );
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy