1 16 17 package org.springframework.remoting; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 49 public class RemoteAccessException extends NestedRuntimeException { 50 51 55 public RemoteAccessException(String msg) { 56 super(msg); 57 } 58 59 65 public RemoteAccessException(String msg, Throwable cause) { 66 super(msg, cause); 67 } 68 69 } 70 | Popular Tags |