summaryrefslogtreecommitdiff
path: root/java/util/IllegalFormatFlagsException.java
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2006-06-04 20:01:20 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2006-06-04 20:01:20 +0000
commit13b36a78b63d3b9fdb76bcdb73b282aaf376fe69 (patch)
treeefb6c314b38601e535bd68d70894b8163d7e3826 /java/util/IllegalFormatFlagsException.java
parentd2887ab0e2daa26d4245affc41d0f5e637e7efce (diff)
downloadclasspath-13b36a78b63d3b9fdb76bcdb73b282aaf376fe69.tar.gz
2006-06-04 Andrew John Hughes <gnu_andrew@member.fsf.org>
* java/util/DuplicateFormatFlagsException.java, * java/util/FormatFlagsConversionMismatchException.java, * java/util/FormatterClosedException.java, * java/util/IllegalFormatCodePointException.java, * java/util/IllegalFormatConversionException.java, * java/util/IllegalFormatException.java, * java/util/IllegalFormatFlagsException.java, * java/util/IllegalFormatPrecisionException.java, * java/util/IllegalFormatWidthException.java, * java/util/MissingFormatArgumentException.java, * java/util/MissingFormatWidthException.java, * java/util/UnknownFormatConversionException.java, * java/util/UnknownFormatFlagsException.java: Documented. 2005-08-13 Tom Tromey <tromey@redhat.com> * java/util/UnknownFormatConversionException.java (serialVersionUID): New field. (s): Renamed from 'conv' for serialization. * java/util/MissingFormatWidthException.java (serialVersionUID): New field. (s): Renamed from 'width' for serialization. * java/util/MissingFormatArgumentException.java (serialVersionUID): New field. (s): Renamed from 'spec' for serialization. * java/util/IllegalFormatWidthException.java (serialVersionUID): New field. (w): Renamed from 'width' for serialization. * java/util/IllegalFormatPrecisionException.java (serialVersionUID): New field. (p): Renamed from 'precision' for serialization. * java/util/IllegalFormatFlagsException.java (serialVersionUID): New field. * java/util/IllegalFormatConversionException.java (serialVersionUID): New field. (c): Renamed from 'conv' for serialization. (arg): Renamed from 'argClass' for serialization. * java/util/IllegalFormatCodePointException.java (serialVersionUID): New field. (c): Renamed from 'codepoint' for serialization. * java/util/FormatFlagsConversionMismatchException.java (serialVersionUID): New field. (f): Renamed from 'flags' for serialization. (c): Renamed from 'conversion' for serialization. * java/util/DuplicateFormatFlagsException.java (serialVersionUID): New field. * java/util/IllegalFormatException.java (serialVersionUID): New field. * java/util/FormatterClosedException.java (serialVersionUID): New field. 2005-04-20 Tom Tromey <tromey@redhat.com> * java/util/DuplicateFormatFlagsException.java: New file. * java/util/FormatFlagsConversionMismatchException.java: New file. * java/util/FormatterClosedException.java: New file. * java/util/IllegalFormatCodePointException.java: New file. * java/util/IllegalFormatConversionException.java: New file. * java/util/UnknownFormatFlagsException.java: New file. * java/util/UnknownFormatConversionException.java: New file. * java/util/MissingFormatWidthException.java: New file. * java/util/MissingFormatArgumentException.java: New file. * java/util/IllegalFormatWidthException.java: New file. * java/util/IllegalFormatPrecisionException.java: New file. * java/util/IllegalFormatFlagsException.java: New file. * java/util/IllegalFormatException.java: New file.
Diffstat (limited to 'java/util/IllegalFormatFlagsException.java')
-rw-r--r--java/util/IllegalFormatFlagsException.java86
1 files changed, 86 insertions, 0 deletions
diff --git a/java/util/IllegalFormatFlagsException.java b/java/util/IllegalFormatFlagsException.java
new file mode 100644
index 000000000..2a085c141
--- /dev/null
+++ b/java/util/IllegalFormatFlagsException.java
@@ -0,0 +1,86 @@
+/* IllegalFormatFlagsException.java
+ Copyright (C) 2005 Free Software Foundation, Inc.
+
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Classpath is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version. */
+
+
+package java.util;
+
+/**
+ * Thrown when the flags supplied to the {@link Formatter#format()}
+ * method of a {@link Formatter} form an illegal combination.
+ *
+ * @author Tom Tromey (tromey@redhat.com)
+ * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
+ * @since 1.5
+ */
+public class IllegalFormatFlagsException
+ extends IllegalFormatException
+{
+ private static final long serialVersionUID = 790824L;
+
+ /**
+ * The set of flags which forms an illegal combination.
+ *
+ * @serial the illegal set of flags.
+ */
+ // Note: name fixed by serialization.
+ private String flags;
+
+ /**
+ * Constructs a new <code>IllegalFormatFlagsException</code>
+ * for the specified flags.
+ *
+ * @param flags the illegal set of flags.
+ * @throws NullPointerException if <code>flags</code> is null.
+ */
+ public IllegalFormatFlagsException(String flags)
+ {
+ super("An illegal set of flags, " + flags + ", was supplied.");
+ if (flags == null)
+ throw new NullPointerException("The supplied flags are null.");
+ this.flags = flags;
+ }
+
+ /**
+ * Returns the illegal flags.
+ *
+ * @return the illegal flags.
+ */
+ public String getFlags()
+ {
+ return flags;
+ }
+}