1 31 package org.objectweb.proactive.core.exceptions.security; 32 33 41 public class SendRequestSecurityException extends SendSecurityException { 42 43 49 public SendRequestSecurityException(String s, Throwable ex) { 50 super(s, ex); 51 description = description + "Request -> "; 52 } 53 54 59 public SendRequestSecurityException(Throwable ex) { 60 super(ex); 61 description = description + "Request -> "; 62 } 63 } 64 | Popular Tags |