| Author |
Creating and using exceptions
|
Janam Robby
Greenhorn
Joined: Sep 16, 2008
Posts: 1
|
|
Creating exceptions and passing them to the controlling module (here method with scenarios). After an exception occurs your code should stop execution of current scenario and go to another one. You could for example create MoviePropertiesNotSetException, IllegalAgeException, etc. You need to have several scenarios resulting with different exceptions being thrown before finally executing a final scenario without exceptions being thrown. My code is as below: NOTE: Finally add another static method to the cinema class that demonstrates the usage of the cinema class. Include multiple scenarios to show how the exceptions work.
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
|
Did you have a question ?
|
Joanne
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32675
|
|
|
Probably best to create a CinemaException and use it as a superclass for all other Exceptions. It is very easy to create your own Exceptions; in 99% of cases you only need to create 4 constructors, as in the Exception class itself. You can decide whether it is checked or unchecked by correctly choosing the superclass for CinemaExpression.
|
 |
 |
|
|
subject: Creating and using exceptions
|
|
|