Package dev.gmitch215.bytebox.text
Class IllegalFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
dev.gmitch215.bytebox.text.IllegalFormatException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MissingFormatArgumentException
A format string the formatter will not accept, standing in for
java.util.IllegalFormatException.
Replaced rather than supplied, and for one reason: the class library's version has package-private constructors, so the two subclasses it is missing cannot be written anywhere else. Its own subclasses keep working, because the compiler rewrites their superclass to this one and the constructors they call are here.
- Since:
- 1.0.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalFormatException
public IllegalFormatException()With no message. -
IllegalFormatException
- Parameters:
message- what is wrong with the format string
-