1 48 49 package com.caucho.burlap.io; 50 51 import com.caucho.hessian.io.HessianProtocolException; 52 53 57 public class BurlapProtocolException extends HessianProtocolException { 58 61 public BurlapProtocolException() 62 { 63 } 64 65 68 public BurlapProtocolException(String message) 69 { 70 super(message); 71 } 72 73 76 public BurlapProtocolException(String message, Throwable rootCause) 77 { 78 super(message, rootCause); 79 } 80 81 84 public BurlapProtocolException(Throwable rootCause) 85 { 86 super(rootCause); 87 } 88 } 89 | Popular Tags |