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

com.adobe.xmp.core.parser.ParseRDFException 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.parser;

import com.adobe.xmp.core.XMPException;


/**
 * Exception for parsing failures resulting due to non-adherence to RDF syntax.
 */
@SuppressWarnings("serial")
public class ParseRDFException extends XMPException
{
	
	/**
	 * Constructor with argument for this exception
	 * 
	 * @see XMPException#XMPException(String)
	 */
	public ParseRDFException(String errorMsg)
	{
		super(errorMsg);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy