@@ -35,7 +35,6 @@ public class CSSParseException extends CSSException {
35
35
* @param message The error or warning message.
36
36
* @param locator The locator object for the error or warning.
37
37
* @see Locator
38
- * @see CSSParser#setLocale
39
38
*/
40
39
public CSSParseException (final String message , final Locator locator ) {
41
40
this (message , locator , null );
@@ -55,7 +54,6 @@ public CSSParseException(final String message, final Locator locator) {
55
54
* @param locator The locator object for the error or warning.
56
55
* @param e Any exception
57
56
* @see Locator
58
- * @see CSSParser#setLocale
59
57
*/
60
58
public CSSParseException (final String message , final Locator locator , final Exception e ) {
61
59
this (message , locator .getUri (), locator .getLineNumber (), locator .getColumnNumber (), e );
@@ -74,7 +72,6 @@ public CSSParseException(final String message, final Locator locator, final Exce
74
72
* caused the error or warning.
75
73
* @param columnNumber The column number of the end of the text that
76
74
* cause the error or warning.
77
- * @see CSSParser#setLocale
78
75
*/
79
76
public CSSParseException (final String message , final String uri , final int lineNumber , final int columnNumber ) {
80
77
this (message , uri , lineNumber , columnNumber , null );
@@ -99,7 +96,6 @@ public CSSParseException(final String message, final String uri, final int lineN
99
96
* @param columnNumber The column number of the end of the text that
100
97
* cause the error or warning.
101
98
* @param e Another exception to embed in this one.
102
- * @see CSSParser#setLocale
103
99
*/
104
100
public CSSParseException (final String message , final String uri ,
105
101
final int lineNumber , final int columnNumber , final Exception e ) {
@@ -116,7 +112,6 @@ public CSSParseException(final String message, final String uri,
116
112
*
117
113
* @return A string containing the URI, or null
118
114
* if none is available.
119
- * @see Locator#getURI
120
115
*/
121
116
public String getURI () {
122
117
return uri_ ;
0 commit comments