4 require_once
'./Services/Exceptions/classes/class.ilException.php';
47 public function __construct($exception_code, $exception_info =
"")
49 $this->code = $exception_code;
50 $this->add_info = $exception_info;
60 switch ($this->code) {
61 case self::NO_SERVICE_ACTIVE:
62 $this->message =
$lng->txt(
"cld_no_service_active");
64 case self::NO_SERVICE_SELECTED:
65 $this->message =
$lng->txt(
"cld_no_service_selected");
67 case self::SERVICE_NOT_ACTIVE:
68 $this->message =
$lng->txt(
"cld_service_not_active");
70 case self::SERVICE_CLASS_FILE_NOT_FOUND:
71 $this->message =
$lng->txt(
"cld_service_class_file_not_found");
73 case self::FOLDER_NOT_EXISTING_ON_SERVICE:
74 $this->message =
$lng->txt(
"cld_folder_not_existing_on_service");
76 case self::FOLDER_ALREADY_EXISTING_ON_SERVICE:
77 $this->message =
$lng->txt(
"cld_folder_already_existing_on_service");
79 case self::FILE_NOT_EXISTING_ON_SERVICE:
80 $this->message =
$lng->txt(
"cld_file_not_existing_on_service");
82 case self::AUTHENTICATION_FAILED:
83 $this->message =
$lng->txt(
"cld_authentication_failed");
85 case self::DELETE_FAILED:
86 $this->message =
$lng->txt(
"cld_delete_failed");
88 case self::ADD_ITEMS_FROM_SERVICE_FAILED:
89 $this->message =
$lng->txt(
"cld_add_items_from_service_failed");
91 case self::DOWNLOAD_FAILED:
92 $this->message =
$lng->txt(
"cld_add_download_failed");
94 case self::FOLDER_CREATION_FAILED:
95 $this->message =
$lng->txt(
"cld_folder_creation_failed");
97 case self::UPLOAD_FAILED:
98 $this->message =
$lng->txt(
"cld_upload_failed");
100 case self::UPLOAD_FAILED_MAX_FILESIZE:
101 $this->message =
$lng->txt(
"cld_upload_failed_max_filesize");
103 case self::INVALID_INPUT:
104 $this->message =
$lng->txt(
"cld_invalid_input");
106 case self::PATH_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION:
107 $this->message =
$lng->txt(
"cld_path_does_not_exist_in_file_tree_in_session");
109 case self::ID_DOES_NOT_EXIST_IN_FILE_TREE_IN_SESSION:
110 $this->message =
$lng->txt(
"cld_id_does_not_exist_in_file_tree_in_session");
112 case self::ID_ALREADY_EXISTS_IN_FILE_TREE_IN_SESSION:
113 $this->message =
$lng->txt(
"cld_id_already_exists_in_file_tree_in_session");
115 case self::PLUGIN_HOOK_COULD_NOT_BE_INSTANTIATED:
116 $this->message =
$lng->txt(
"cld_plugin_hook_could_not_be_instantiated");
118 case self::PERMISSION_DENIED:
119 $this->message =
$lng->txt(
"cld_permission_denied");
121 case self::PERMISSION_TO_CHANGE_ROOT_FOLDER_DENIED:
122 $this->message =
$lng->txt(
"cld_permission_to_change_root_folder_denied");
125 $this->message =
$lng->txt(
"cld_unknown_exception");
128 $this->message .= ($this->add_info ?
": " :
"") . $this->add_info;
134 return get_class($this) .
" '{$this->message}' in {$this->file}({$this->line})\n" 135 .
"{$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
__construct(Container $dic, ilPlugin $plugin)
const FOLDER_NOT_EXISTING_ON_SERVICE
const FOLDER_ALREADY_EXISTING_ON_SERVICE
const UPLOAD_FAILED_MAX_FILESIZE