Searched refs:IllegalFormatFlagsException (Results 1 - 5 of 5) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DIllegalFormatFlagsExceptionTest.java20 import java.util.IllegalFormatFlagsException;
30 * java.util.IllegalFormatFlagsException#IllegalFormatFlagsException(String)
34 new IllegalFormatFlagsException(null);
42 * java.util.IllegalFormatFlagsException.getFlags()
46 IllegalFormatFlagsException illegalFormatFlagsException = new IllegalFormatFlagsException(
52 * java.util.IllegalFormatFlagsException.getMessage()
56 IllegalFormatFlagsException illegalFormatFlagsException = new IllegalFormatFlagsException(
[all...]
H A DFormatterTest.java48 import java.util.IllegalFormatFlagsException;
941 fail("should throw IllegalFormatFlagsException: %-n");
942 } catch (IllegalFormatFlagsException e) {
947 fail("should throw IllegalFormatFlagsException: %+n");
948 } catch (IllegalFormatFlagsException e) {
953 fail("should throw IllegalFormatFlagsException: %#n");
954 } catch (IllegalFormatFlagsException e) {
959 fail("should throw IllegalFormatFlagsException: % n");
960 } catch (IllegalFormatFlagsException e) {
965 fail("should throw IllegalFormatFlagsException
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DIllegalFormatFlagsException.java37 public class IllegalFormatFlagsException extends IllegalFormatException { class in inherits:IllegalFormatException
49 public IllegalFormatFlagsException(String f) { method in class:IllegalFormatFlagsException
H A DFormatter.java988 * then an {@link IllegalFormatFlagsException} will be thrown.
996 * then an {@link IllegalFormatFlagsException} will be thrown.
1007 * {@link IllegalFormatFlagsException} will be thrown.
1782 * {@link IllegalFormatFlagsException}, {@link IllegalFormatWidthException},
3121 throw new IllegalFormatFlagsException(f.toString());
3131 throw new IllegalFormatFlagsException(f.toString());
3140 throw new IllegalFormatFlagsException(f.toString());
/libcore/luni/src/test/java/libcore/java/util/
H A DOldFormatterTest.java24 import java.util.IllegalFormatFlagsException;
104 fail("should throw IllegalFormatFlagsException");
105 } catch (IllegalFormatFlagsException expected) {
110 fail("should throw IllegalFormatFlagsException");
111 } catch (IllegalFormatFlagsException expected) {

Completed in 102 milliseconds