1 45 46 package org.exolab.jms.net.connector; 47 48 55 public class SecurityException extends ResourceException { 56 57 60 private static final long serialVersionUID = 1L; 61 62 63 66 public SecurityException() { 67 } 68 69 74 public SecurityException(String detail) { 75 super(detail); 76 } 77 78 83 public SecurityException(Throwable target) { 84 super(target); 85 } 86 87 94 public SecurityException(String detail, Throwable target) { 95 super(detail, target); 96 } 97 98 } 99 | Popular Tags |