What are key words from throw exeption like this?
public void methodOne() throw SomeExeption {
try{
doSomething();
catch(SomeExeption se) {
throw se;
}
}
public void startThere() {
try{
methodOne();
catch(SomeExeption se) {
Console.writeln("FAIL");
}
}
I don't know, how to write it. I am getting syntax errors.
Thank you for your help.