1 25 26 package org.objectweb.jonas.webapp.jonasadmin; 27 28 import org.objectweb.jonas.service.ServiceException; 29 30 36 37 public class JonasAdminException extends ServiceException { 38 40 43 protected String m_Id = null; 44 45 47 public JonasAdminException(String p_Id, String p_Message, Throwable p_Throwable) { 48 super(p_Message, p_Throwable); 49 m_Id = p_Id; 50 } 51 52 public JonasAdminException(String p_Id, String p_Message) { 53 super(p_Message); 54 m_Id = p_Id; 55 } 56 57 public JonasAdminException(String p_Id) { 58 super(""); 59 m_Id = p_Id; 60 } 61 62 66 public String getId() { 67 return m_Id; 68 } 69 70 } | Popular Tags |