##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1469 - No Title.py
# Description: No Title
##############################################################################
class NewException(Exception):
pass
def launcher():
raise NewException
try:
launcher()
except NewException:
print("An exception of the type NovaException was thrown")