1 19 package org.enhydra.zeus.util; 20 21 import org.enhydra.zeus.Binding; 22 import org.enhydra.zeus.ZeusException; 23 24 34 public class UnsupportedSchemaTypeException extends ZeusException { 35 36 42 public UnsupportedSchemaTypeException() { 43 super("The supplied schema type is not currently supported by Zeus."); 44 } 45 46 54 public UnsupportedSchemaTypeException(String schemaType) { 55 super("The supplied schema type, '" + schemaType + "', is not " + 56 "currently supported by Zeus."); 57 } 58 } 59 | Popular Tags |