Home | History | Annotate | Download | only in xmp
      1 // =================================================================================================
      2 // ADOBE SYSTEMS INCORPORATED
      3 // Copyright 2006 Adobe Systems Incorporated
      4 // All Rights Reserved
      5 //
      6 // NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms
      7 // of the Adobe license agreement accompanying it.
      8 // =================================================================================================
      9 
     10 package com.adobe.xmp;
     11 
     12 
     13 /**
     14  * @since   21.09.2006
     15  */
     16 public interface XMPError
     17 {
     18 	/** */
     19 	int UNKNOWN = 0;
     20 	/** */
     21 	int BADPARAM = 4;
     22 	/** */
     23 	int BADVALUE = 5;
     24 	/** */
     25 	int INTERNALFAILURE = 9;
     26 	/** */
     27 	int BADSCHEMA = 101;
     28 	/** */
     29 	int BADXPATH = 102;
     30 	/** */
     31 	int BADOPTIONS = 103;
     32 	/** */
     33 	int BADINDEX = 104;
     34 	/** */
     35 	int BADSERIALIZE = 107;
     36 	/** */
     37 	int BADXML = 201;
     38 	/** */
     39 	int BADRDF = 202;
     40 	/** */
     41 	int BADXMP = 203;
     42 	/** <em>Note:</em> This is an error code introduced by Java. */
     43 	int BADSTREAM = 204;
     44 }
     45