Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: fc81e95a6c7950d8775e1ee59c4ee67209e65de1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class A {
	public MyClass getMyObject()
	{
	    MyClass o = new MyClass();

	    doSomehting( 1 );

	    if (somethingBad)
	        throw( new IllegalBlaException( "bad bla" ) );

	    return( o );
	}
}

Back to the top