w3c.css.util.WarningParamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssvalidator Show documentation
Show all versions of cssvalidator Show documentation
Backend for the W3C CSS Validation Service
// $Id$
package org.w3c.css.util;
public class WarningParamException extends InvalidParamException {
private String message = null;
private String[] messageArgs = null;
public WarningParamException(String message, String messageArg) {
this(message, new String[]{messageArg});
}
public WarningParamException(String message, String[] messageArgs) {
this.message = message;
this.messageArgs = messageArgs;
}
public String getMessage() {
return message;
}
public String[] getMessageArgs() {
return messageArgs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy