Suppose an application consists of 2 classes:
public class A {
public static void main(String[] args) {
B b = new B();
System.out.println("After B constructor call");
}
}
but there's no class B in the classpath.
What kind of exception will be thrown after the program launching?