# -*- coding: utf-8 -*-""" exception.py ~~~~~~~~~~~~ This module implements some Python classes that are the exceptions raised by g-Octave. :copyright: (c) 2009-2010 by Rafael Goncalves Martins :license: GPL-2, see LICENSE for more details."""__all__=['GOctaveError']classGOctaveError(Exception):pass