Class ResourceFormattingException
public class ResourceFormattingException extends Exception
{
// Constructors
public ResourceFormattingException(String msg);
}
This class signals that the reading of a resource was incorrect.
Exception
|
+--ResourceFormattingException
public ResourceFormattingException(String msg);
Constructs a ResourceFormattingException exception with the specified detail message (a string that describes this particular exception).
Parameter | Description |
msg
| The detailed message.
|