1 19 package org.enhydra.zeus; 20 21 30 public class InvalidCollectionTypeException extends ZeusException { 31 32 37 public InvalidCollectionTypeException() { 38 super("An illegal or unsupported collection type was specified."); 39 } 40 41 48 public InvalidCollectionTypeException(String collectionType) { 49 super("An illegal or unsupported collection type, '" + collectionType + 50 "', was specified."); 51 } 52 } 53 | Popular Tags |