public
class
IllegalFormatPrecisionException
extends IllegalFormatException
Unchecked exception thrown when the precision is a negative value other than
-1
, the conversion does not support a precision, or the value is
otherwise unsupported. If the precision is not representable by an
int
type, then the value Integer.MIN_VALUE
will be used
in the exception.
Summary
Inherited methods |
From class
java.lang.Throwable
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeoutMillis, int nanos)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted.
|
|
Public constructors
public IllegalFormatPrecisionException (int p)
Constructs an instance of this class with the specified precision.
Parameters |
p |
int : The precision |
Public methods
getMessage
public String getMessage ()
Returns the detail message string of this throwable.
Returns |
String |
the detail message string of this Throwable instance
(which may be null ). |
getPrecision
public int getPrecision ()
Returns the precision. If the precision isn't representable by an
int
, then will return Integer.MIN_VALUE
.
Returns |
int |
The precision |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[]]