printErrorDescription is a method that accepts one int argument and returns no value.
LANGUAGE: JAVA
CHALLENGE:
printErrorDescription is a method that accepts one int argument and returns no value.
Write a statement that invokes the method printErrorDescription, passing it the value 14.
Assume that printErrorDescription is defined in the same class that calls it.
SOLUTION:
printErrorDescription(14);