Define an exception class called FileNotFoundException.
The class should have a constructor with
no parameters. If an exception is thrown with this zero-argument constructor, getMessage should
return “File Not Found!” The class should also have a constructor with a single parameter of type String. If an exception is thrown with this constructor, then getMessage returns the value that was
used as an argument to the constructor.
```
public class FileNotFoundException extends Exception
{
public FileNotFoundException()
{
super("File Not Found!");
}
public FileNotFoundException(String message)
{
super(message);
}
}
```
Computer Science & Information Technology