001 package railo.commons.lang; 002 003 004 /** 005 * thrown from ArrayUtil 006 */ 007 public final class ArrayUtilException extends Exception { 008 009 /** 010 * construcvtor of the Exception 011 * @param message Error Message 012 */ 013 public ArrayUtilException(String message) { 014 super(message); 015 } 016 }