1 31 package org.objectweb.proactive.ext.security; 32 33 import org.objectweb.proactive.core.body.UniversalBody; 34 35 import java.io.Serializable ; 36 37 38 44 public class RenegotiateSessionException extends Exception 45 implements Serializable { 46 protected UniversalBody body; 47 48 51 public RenegotiateSessionException() { 52 super(); 53 } 54 55 58 public RenegotiateSessionException(String arg0) { 59 super(arg0); 60 } 61 62 66 public RenegotiateSessionException(String arg0, Throwable arg1) { 67 super(arg0, arg1); 68 } 69 70 73 public RenegotiateSessionException(Throwable arg0) { 74 super(arg0); 75 } 76 77 public RenegotiateSessionException(UniversalBody uni) { 78 super(); 79 this.body = uni; 80 } 81 82 public UniversalBody getUniversalBody() { 83 return this.body; 84 } 85 } 86 | Popular Tags |