Given the code fragment:class NoMatchException extends RuntimeException{}
public class Test{
public static void main(String[] args){
try{
if("oracle".equals("ORACLE".toLowerCase())){
throw new NoMatchException();
}
}catch(NoMatchException | NullPointerException npe){
System.out.println("Exception 1");
}catch(RuntimeException e){
System.out.println("Exception 2");
}catch(Exception e){
System.out.println("Exception 3");
}finally{
System.out.println("Finally Block");
}
}
}
这个程序打印了多少行文本?