1 16 17 package org.apache.taglibs.gnat.util; 18 19 import java.io.*; 20 import java.util.*; 21 22 27 public class GnatExceptionStrings extends ListResourceBundle 28 { 29 public Object [][] getContents() { 30 return contents; 31 } 32 static final Object [][] contents = { 33 { "empty.dir.attribute", "Non-empty \"dir\" attribute value required." }, 35 { "duplicate.mkdir.fail", "Unable to create dir as a directory with that name already exists: " }, 36 { "unknown.mkdir.fail", "Directory creation failed for an unknown reason: " }, 37 { "echo.dir.fail", "Can't echo to a directory; make sure value of \"file\" is a regular file." }, 38 { "touch.nsme", "You must use a 1.2 or higher JVM with this tag: " }, 39 { "touch.no.create", "Could not create file " }, 40 { "touch.throwable", "Exception setting the modification time of " }, 41 }; 43 } 44 | Popular Tags |