1 25 package org.objectweb.jonas.mejb; 26 27 32 public class ManagementEndpointException extends Exception { 33 34 37 private String exceptionType; 38 39 42 private String message; 43 44 48 public String getExceptionType() { 49 return exceptionType; 50 } 51 52 56 public void setExceptionType(String exceptionType) { 57 this.exceptionType = exceptionType; 58 } 59 60 64 public String getMessage() { 65 return message; 66 } 67 68 72 public void setMessage(String message) { 73 this.message = message; 74 } 75 76 } | Popular Tags |