1 18 19 package cowsultants.itracker.ejb.client.exceptions; 20 21 public class ImportExportException extends Exception { 22 public static final int TYPE_UNKNOWN = -1; 23 public static final int TYPE_INVALID_LOGINS = -2; 24 public static final int TYPE_INVALID_STATUS = -3; 25 26 private int type = TYPE_UNKNOWN; 27 28 public ImportExportException() { 29 } 30 31 public ImportExportException(String message) { 32 super(message); 33 } 34 35 public ImportExportException(String message, int type) { 36 super(message); 37 this.type = type; 38 } 39 40 public int getType() { 41 return type; 42 } 43 44 public void setType(int value) { 45 type = value; 46 } 47 } 48 49 | Popular Tags |