1 16 package com.google.gwt.http.client; 17 18 31 public class RequestPermissionException extends RequestException { 32 33 36 private final String url; 37 38 43 public RequestPermissionException(String url) { 44 super("The URL " + url 45 + " is invalid or violates the same-origin security restriction"); 46 47 this.url = url; 48 } 49 50 55 public String getURL() { 56 return url; 57 } 58 } 59 | Popular Tags |