undefined
10
Task
Java Collections, level 8, lesson 4
Locked
Fix coding errors
The NameIsEmptyException and NameIsNullException exceptions must be checked. All types of exceptions must be handled. Don't change the implementations of the main() and getNumberOfCharacters() methods. Only the order of the catch blocks in the main() method should be changed.
undefined
10
Task
Java Collections, level 8, lesson 4
Locked
Checked exceptions
Write the implementation of the veryComplexMethod() method. It must always throw a checked exception. Using the keyword throw to throw an exception is explicitly forbidden.
undefined
10
Task
Java Collections, level 8, lesson 4
Locked
Runtime exceptions (unchecked exceptions)
Write the implementation of the methodThrowsClassCastException() method. It must always throw a ClassCastException. Write the implementation of the methodThrowsNullPointerException() method. It must always throw a NullPointerException.