Searched refs:IllegalFormatConversionException (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DIllegalFormatConversionExceptionTest.java27 import java.util.IllegalFormatConversionException;
32 @TestTargetClass(IllegalFormatConversionException.class)
36 * @tests java.util.IllegalFormatConversionException#IllegalFormatConversionException(char,
42 method = "IllegalFormatConversionException",
47 new IllegalFormatConversionException(' ', null);
53 assertNotNull(new IllegalFormatConversionException(' ', String.class));
57 * @tests java.util.IllegalFormatConversionException#getArgumentClass()
68 IllegalFormatConversionException illegalFormatConversionException = new IllegalFormatConversionException(
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DIllegalFormatConversionException.java22 * An {@code IllegalFormatConversionException} will be thrown when the parameter
28 public class IllegalFormatConversionException extends IllegalFormatException class in inherits:IllegalFormatException,Serializable
37 * Constructs a new {@code IllegalFormatConversionException} with the class
45 public IllegalFormatConversionException(char c, Class<?> arg) { method in class:IllegalFormatConversionException
72 * Returns the message string of the IllegalFormatConversionException.
74 * @return the message string of the IllegalFormatConversionException.
H A DFormatter.java1463 throw new IllegalFormatConversionException(formatToken
1610 throw new IllegalFormatConversionException(formatToken
1919 throw new IllegalFormatConversionException(
2007 throw new IllegalFormatConversionException(
2213 throw new IllegalFormatConversionException(
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DFormatterTest.java44 import java.util.IllegalFormatConversionException;
1678 notes = "Verifies IllegalFormatConversionException, FormatFlagsConversionMismatchException, functionality.",
1690 fail("should throw IllegalFormatConversionException");
1691 } catch (IllegalFormatConversionException e) {
3052 * IllegalFormatPrecisionException > IllegalFormatConversionException >
3058 // compare IllegalFormatConversionException and
3061 fail("should throw IllegalFormatConversionException");
3062 } catch (IllegalFormatConversionException e) {
3068 // IllegalFormatConversionException
4292 fail("should throw IllegalFormatConversionException");
[all...]

Completed in 135 milliseconds