message = $message; $this->code = $code; $this->version = $version; $this->file = $file; $this->line = $line; $this->trace = $trace; } public function isClientSafe(): bool { return true; } public function getCategory(): string { return 'Appwrite Server Exception'; } /** * @return string */ public function getVersion(): string { return $this->version; } /** * @param string $version */ public function setVersion(string $version): void { $this->version = $version; } }