![JAR search and dependency download from the Maven repository](/logo.png)
com.adobe.xmp.path.XMPPathParserException 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
// =================================================================================================
// 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.path;
/**
* Denotes an error in the parsing process of an XMP path String
*/
public class XMPPathParserException extends Exception
{
private static final long serialVersionUID = 4274465725891569432L;
public XMPPathParserException()
{
}
public XMPPathParserException(String message)
{
super( message );
}
public XMPPathParserException(Throwable cause)
{
super( cause );
}
public XMPPathParserException(String message, Throwable cause)
{
super( message, cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy