1 31 package org.objectweb.proactive.ext.security; 32 33 34 40 public class SecurityNotAvailableException extends Exception { 41 42 45 public SecurityNotAvailableException() { 46 super(); 47 } 48 49 52 public SecurityNotAvailableException(String message) { 53 super(message); 54 } 55 56 60 public SecurityNotAvailableException(String message, Throwable cause) { 61 super(message, cause); 62 } 63 64 67 public SecurityNotAvailableException(Throwable cause) { 68 super(cause); 69 } 70 } 71 | Popular Tags |