What will happen if you try to compile and run the code below?
public class Main {
public static void main(String args) throws Exception {
System.out.printf("No! I'm still the boss!");
}
public void main(String[] args) throws Exception {
System.out.printf("I'm the boss");
}
}