#encoding: utf-8 module PointRb module Exceptions # Raised if file does not exist class FileNotFound < Exception; end # Raised if requested layout was not # available class LayoutNotFound < Exception; end # Raised if one has a layout with an # invalid syntax class SyntaxErrorInLayout < Exception; end # Raised if project path exists class ProjectPathExists < Exception; end # Raised if one tries to initialize a system # which has already been initialized class Exceptions::PointRbWasAlreadInitialized < Exception; end end end