1 16 package com.google.gwt.user.client.rpc; 17 18 52 public final class IncompatibleRemoteServiceException extends RuntimeException  53 implements IsSerializable { 54 58 public IncompatibleRemoteServiceException() { 59 super( 60 "This application is out of date, please click the refresh button on your browser"); 61 } 62 63 66 public IncompatibleRemoteServiceException(String msg) { 67 super(msg); 68 } 69 70 73 public IncompatibleRemoteServiceException(String msg, Throwable cause) { 74 super(msg, cause); 75 } 76 } 77 | Popular Tags |