787980818283848586
public void ex_3( boolean non_empty, int delay ) throws NonEmptyException, EmptyException { delay( delay ); if ( non_empty ) throw new NonEmptyException( 4321, "zzz" ); else throw new EmptyException( "reason" ); }