StringFormater format = new StringFormater(this.format, this.character);
Writer writer = this.getJspContext().getOut();
String formated = "";
try {
formated = format.format(value);
} catch (ArrayIndexOutOfBoundsException e) {
WebLog.getInstance().getLog().warn("Error formating '" + value + "' with mask '" + this.format + "'");
formated = FormatTag.ERROR_VALUE;
}