exceptions_raise.txt 193 B

12345678
  1. $ python exceptions_raise.py
  2. Enter something --> a
  3. ShortInputException: The input was 1 long, expected at least 3
  4. $ python exceptions_raise.py
  5. Enter something --> abc
  6. No exception was raised.