Lines Matching defs:TypeException

418     public static class TypeException extends IllegalArgumentException {
419 TypeException(String property, Object value, String requestedType) {
432 * @throws TypeException if the property is set and is not a boolean
442 throw new TypeException(property, value, "boolean");
452 * @throws TypeException if the property is set and is not a byte
462 throw new TypeException(property, value, "byte");
472 * @throws TypeException if the property is set and is not a short
482 throw new TypeException(property, value, "short");
492 * @throws TypeException if the property is set and is not an integer
502 throw new TypeException(property, value, "int");
512 * @throws TypeException if the property is set and is not a long
522 throw new TypeException(property, value, "long");
532 * @throws TypeException if the property is set and is not a float
542 throw new TypeException(property, value, "float");
552 * @throws TypeException if the property is set and is not a double
562 throw new TypeException(property, value, "double");
572 * @throws TypeException if the property is set and is not a string
584 throw new TypeException(property, value, "string");
597 * @throws TypeException if the property is set and is not a boolean
609 * @throws TypeException if the property is set and is not a byte
621 * @throws TypeException if the property is set and is not a short
633 * @throws TypeException if the property is set and is not an integer
645 * @throws TypeException if the property is set and is not a long
657 * @throws TypeException if the property is set and is not a float
669 * @throws TypeException if the property is set and is not a double
681 * @throws TypeException if the property is set and is not a string