Adept.Core.namespace('Adept');

Adept.Exception.IllegalState  = Class.create(Adept.Exception,
{
    
    initialize: function($super,message)
    {
        Adept.Core.defaultValue(message, 'Illegal object state');
        $super(message);
    }

});