Throwing error coding
Hi,
I'm working on a code where I can throw an error, but I'm just wondering is this the correct way to code it?
The idea here is to create a class where the NotImplementedError will be used as an error to be thrown
publicclass NotImplementedErrorextends Error
{
/**
* Constructs a NotImplementedError.
*/
public NotImplementedError()
{
super("Not implemented");
}
}

