WALA/com.ibm.wala.cast.java.test.../src/Finally2.java

40 lines
1.1 KiB
Java

/******************************************************************************
* Copyright (c) 2002 - 2008 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*****************************************************************************/
import java.io.IOException;
public class Finally2 {
public static void main(String[] args) throws IOException {
try {
FooF2 f = new FooF2();
f.bar();
f.bletch();
} catch (BadLanguageExceptionF2 e) {
e.printStackTrace();
} finally {
System.out.println("blah");
}
}
}
class FooF2 {
public void bar() throws BadLanguageExceptionF2 {
throw new BadLanguageExceptionF2();
}
public void bletch() throws IOException {
throw new IOException("Burp!");
}
}
class BadLanguageExceptionF2 extends Exception {
public BadLanguageExceptionF2() {
super("Try using a real language, like Perl");
}
}