CMS 3D CMS Logo

TkAlExceptions.py
Go to the documentation of this file.
2  def __init__(self, msg):
3  Exception.__init__(self, msg)
4  self._msg = msg
5  return
6 
7  def __str__(self):
8  return self._msg