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

com.adobe.xmp.schema.model.XMPSchemaException Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2011 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.schema.model;

/**
 * Doesn't add anything to the default Exception.
 */
public class XMPSchemaException extends Exception
{
	private static final long serialVersionUID = -3734439070049547706L;

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

	
	/**
	 * Constructs a new XMPSchemaException.
	 *
	 * @param message Initializes the exception with an error message. 
	 * @param cause The original exception
	 */
	public XMPSchemaException(String message, Throwable cause)
	{
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy