Home | History | Annotate | Download | only in datamodel

Lines Matching refs:errorCode

61     public DataModelException(final int errorCode, final Exception innerException,
66 if (errorCode < FIRST || errorCode > LAST) {
67 throw new IllegalArgumentException("error code out of range: " + errorCode);
70 mErrorCode = errorCode;
81 public DataModelException(final int errorCode) {
82 this(errorCode, null, 0, false, null);
85 public DataModelException(final int errorCode, final Exception innerException) {
86 this(errorCode, innerException, 0, false, null);
89 public DataModelException(final int errorCode, final String message) {
90 this(errorCode, null, 0, false, message);