com.adobe.xmp.core.parser.ParseXMPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
The 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 XMP specification.
*/
@SuppressWarnings("serial")
public class ParseXMPException extends XMPException
{
/**
* Constructor with argument for this exception
*
* @param errorMsg an explaining message
* @see XMPException#XMPException(String, Throwable)
*/
public ParseXMPException(String errorMsg)
{
super(errorMsg);
}
}