1 16 package com.google.gwt.user.client.rpc; 17 18 22 public class SerializableException extends Exception implements IsSerializable { 23 24 private String msg; 25 26 30 public SerializableException() { 31 } 32 33 37 public SerializableException(String msg) { 38 this.msg = msg; 39 } 40 41 46 public Throwable getCause() { 47 return null; 48 } 49 50 public String getMessage() { 51 return msg; 52 } 53 54 58 public Throwable initCause(Throwable cause) { 59 return null; 61 } 62 } 63 | Popular Tags |