summaryrefslogtreecommitdiff
path: root/java/XMPCore/src/com/adobe/xmp/XMPError.java
blob: ebf040dc02073dafbcbf3efffbfdcd03c27672f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2006-2007 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;


/**
 * @since   21.09.2006
 */
public interface XMPError
{
	/** */
	int UNKNOWN = 0;
	/** */
	int BADPARAM = 4;
	/** */
	int BADVALUE = 5;
	/** */
	int INTERNALFAILURE = 9;
	/** */
	int BADSCHEMA = 101;
	/** */
	int BADXPATH = 102;
	/** */
	int BADOPTIONS = 103;
	/** */
	int BADINDEX = 104;
	/** */
	int BADSERIALIZE = 107;
	/** */
	int BADXML = 201;
	/** */
	int BADRDF = 202;
	/** */
	int BADXMP = 203;
	/** <em>Note:</em> This is an error code introduced by Java. */
	int BADSTREAM = 204;
}