public function __construct($file_name, $error_message_format_string = NULL)
 {
     if (!isset($error_message_format_string)) {
         $error_message_format_string = "'%s' not found!";
     }
     parent::__construct($error_message_format_string, array($file_name));
 }
 public function __construct($username, $host)
 {
     parent::__construct('Unable to connect as %s@%s!', array($username, $host));
 }
 public function __construct($locked_script_name)
 {
     $cs_cm = Configuration_ConfigManagerHelper::get_config_manager('haddock', 'cli-scripts');
     parent::__construct($cs_cm->get_script_locked_exception_format_string(), $locked_script_name);
 }
 public function __construct($config_file_name, $module_name, $type_of_config_file)
 {
     $error_message_format_string = '"%s" config file of type "%s" for the "%s" module not found!';
     parent::__construct($error_message_format_string, array($config_file_name, $type_of_config_file, $module_name));
 }