1 29 30 package com.caucho.soa.rest; 31 32 34 public class RestException extends Exception { 35 public RestException() 36 { 37 super(); 38 } 39 40 public RestException(String message) 41 { 42 super(message); 43 } 44 45 public RestException(String message, Throwable cause) 46 { 47 super(message, cause); 48 } 49 50 public RestException(Throwable cause) 51 { 52 super(cause); 53 } 54 } 55 | Popular Tags |