BCGException
The object can be in initialized in two different ways. The first constructs a new exception with null as its detail message. The second constructs a new exception with the specified detail message.
public class BCGException extends Exception {}
Without a detail message
public BCGException
With a detail message
public BCGException(String s)
Without a detail message
With a detail message