blob: 1e15b791eea4a9df29e133c65dca7e1f124fddef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import "/template.typ": highlight-output
#highlight-output[```
$ java CustomExceptionExample
Enter an integer: 23
You entered: 23
$ java CustomExceptionExample
Enter an integer: -4
Number cannot be less than zero
$ java CustomExceptionExample
Enter an integer: abc
Input must be an integer.
```]
|