4 require_once
'./Services/Exceptions/classes/class.ilException.php';
53 public function __construct($exception_code, $exception_info =
"")
55 $this->code = $exception_code;
56 $this->add_info = $exception_info;
58 parent::__construct($this->message, $this->code);
65 switch ($this->code) {
66 case self::NO_SERVICE_ACTIVE:
67 $this->message =
$lng->txt(
"cld_no_service_active");
69 case self::NO_SERVICE_SELECTED:
70 $this->message =
$lng->txt(
"cld_no_service_selected");
72 case self::SERVICE_NOT_ACTIVE:
73 $this->message =
$lng->txt(
"cld_service_not_active");
75 case self::SERVICE_CLASS_FILE_NOT_FOUND:
76 $this->message =
$lng->txt(
"cld_service_class_file_not_found");
78 case self::FOLDER_NOT_EXISTING_ON_SERVICE:
79 $this->message =
$lng->txt(
"cld_folder_not_existing_on_service");
81 case self::FOLDER_ALREADY_EXISTING_ON_SERVICE:
82 $this->message =
$lng->txt(
"cld_folder_already_existing_on_service");
84 case self::FILE_NOT_EXISTING_ON_SERVICE:
85 $this->message =
$lng->txt(
"cld_file_not_existing_on_service");
87 case self::AUTHENTICATION_FAILED:
88 $this->message =
$lng->txt(
"cld_authentication_failed");
90 case self::DELETE_FAILED:
91 $this->message =
$lng->txt(
"cld_delete_failed");
93 case self::ADD_ITEMS_FROM_SERVICE_FAILED:
94 $this->message =
$lng->txt(
"cld_add_items_from_service_failed");
96 case self::DOWNLOAD_FAILED:
97 $this->message =
$lng->txt(
"cld_add_download_failed");
99 case self::FOLDER_CREATION_FAILED:
100 $this->message =
$lng->txt(
"cld_folder_creation_failed");
102 case self::UPLOAD_FAILED:
103 $this->message =
$lng->txt(
"cld_upload_failed");
105 case self::UPLOAD_FAILED_MAX_FILESIZE:
106 $this->message =
$lng->txt(
"cld_upload_failed_max_filesize");
108 case self::INVALID_INPUT:
109 $this->message =
$lng->txt(
"cld_invalid_input");
111 case self::PATH_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION:
112 $this->message =
$lng->txt(
"cld_path_does_not_exist_in_file_tree_in_session");
114 case self::ID_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION:
115 $this->message =
$lng->txt(
"cld_id_does_not_exist_in_file_tree_in_session");
117 case self::ID_ALREADY_EXISTS_IN_FILE_TREE_IN_SESSION:
118 $this->message =
$lng->txt(
"cld_id_already_exists_in_file_tree_in_session");
120 case self::PLUGIN_HOOK_COULD_NOT_BE_INSTANTIATED:
121 $this->message =
$lng->txt(
"cld_plugin_hook_could_not_be_instantiated");
123 case self::PERMISSION_DENIED:
124 $this->message =
$lng->txt(
"cld_permission_denied");
126 case self::PERMISSION_TO_CHANGE_ROOT_FOLDER_DENIED:
127 $this->message =
$lng->txt(
"cld_permission_to_change_root_folder_denied");
130 $this->message =
$lng->txt(
"cld_unknown_exception");
133 $this->message .= ($this->add_info ?
": " :
"") . $this->add_info;
138 return get_class($this) .
" '{$this->message}' in {$this->file}({$this->line})\n" 139 .
"{$this->getTraceAsString()}";
const PATH_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION
const AUTHENTICATION_FAILED
const NO_SERVICE_SELECTED
__construct($exception_code, $exception_info="")
const ADD_ITEMS_FROM_SERVICE_FAILED
const ID_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION
const PERMISSION_TO_CHANGE_ROOT_FOLDER_DENIED
const SERVICE_CLASS_FILE_NOT_FOUND
const FOLDER_CREATION_FAILED
const PLUGIN_HOOK_COULD_NOT_BE_INSTANTIATED
const FILE_NOT_EXISTING_ON_SERVICE
const ID_ALREADY_EXISTS_IN_FILE_TREE_IN_SESSION
const FOLDER_NOT_EXISTING_ON_SERVICE
const FOLDER_ALREADY_EXISTING_ON_SERVICE
const UPLOAD_FAILED_MAX_FILESIZE