Source code for ivy.exceptions.exceptions
# Copyright (C) 2013 ETH Zurich, Institute for Astronomy
'''
Created on Mar 4, 2014
author: jakeret
'''
from __future__ import print_function, division, absolute_import, unicode_literals
[docs]class IllegalAccessException(Exception):
"""Raised when an immutable struct is tried to be modified"""
pass
[docs]class NotImplementedException(Exception):
"""Raised when a methods of an ABC are not overwritten"""
pass
[docs]class InvalidAttributeException(Exception):
"""Raised when attributes are not valid"""
pass
[docs]class UnsupportedPluginTypeException(Exception):
"""Raised when a plugin cannot be found or be instanciated"""
pass
[docs]class InvalidLoopException(Exception):
"""Raised when a loop cannot be executed properly"""
pass