1 48 49 package org.jpublish.util.uri; 50 51 import org.jpublish.JPublishException; 52 53 58 59 public class URIParseException extends JPublishException { 60 61 private String uri = null; 62 63 68 69 public URIParseException(String uri) { 70 this(null, null, uri); 71 } 72 73 79 80 public URIParseException(String message, String uri) { 81 this(message, null, uri); 82 } 83 84 90 91 public URIParseException(Throwable t, String uri) { 92 this(null, t, uri); 93 } 94 95 102 103 public URIParseException(String message, Throwable t, String uri) { 104 super(message, t); 105 this.uri = uri; 106 } 107 108 113 114 public String getURI() { 115 return uri; 116 } 117 118 } 119 | Popular Tags |