1 48 49 package com.caucho.burlap.io; 50 51 import com.caucho.hessian.io.HessianServiceException; 52 53 57 public class BurlapServiceException extends HessianServiceException { 58 61 public BurlapServiceException() 62 { 63 } 64 65 68 public BurlapServiceException(String message, String code, Object detail) 69 { 70 super(message, code, detail); 71 } 72 } 73 | Popular Tags |