module BuildTool # Base class for all BuildTool Errors class Error < StandardError; end # A configuration error happened. class ConfigurationError < Error; end end