Home | History | Annotate | Download | only in xmp

Lines Matching refs:errorCode

19 	/** the errorCode of the XMP toolkit */
20 private int errorCode;
26 * @param errorCode the error code
28 public XMPException(String message, int errorCode)
31 this.errorCode = errorCode;
38 * @param errorCode the error code
41 public XMPException(String message, int errorCode, Throwable t)
44 this.errorCode = errorCode;
49 * @return Returns the errorCode.
53 return errorCode;