class UploadException in DropzoneJS 8.2
Same name and namespace in other branches
- 8 src/UploadException.php \Drupal\dropzonejs\UploadException
Class UploadException.
Hierarchy
- class \Drupal\dropzonejs\UploadException extends \Drupal\dropzonejs\Exception
Expanded class hierarchy of UploadException
1 file declares its use of UploadException
- UploadController.php in src/
Controller/ UploadController.php
File
- src/
UploadException.php, line 10
Namespace
Drupal\dropzonejsView source
class UploadException extends \Exception {
/**
* Error with input stream.
*/
const INPUT_ERROR = 101;
/**
* Error with output stream.
*/
const OUTPUT_ERROR = 102;
/**
* Error moving uploaded file.
*/
const MOVE_ERROR = 103;
/**
* Error with destination folder.
*/
const DESTINATION_FOLDER_ERROR = 104;
/**
* Error with temporary file name.
*/
const FILENAME_ERROR = 105;
/**
* File upload resulted in error.
*/
const FILE_UPLOAD_ERROR = 106;
/**
* Code to error message mapping.
*
* @var array
*/
public $errorMessages = [
self::INPUT_ERROR => 'Failed to open input stream.',
self::OUTPUT_ERROR => 'Failed to open output stream.',
self::MOVE_ERROR => 'Failed to move uploaded file.',
self::DESTINATION_FOLDER_ERROR => 'Failed to open temporary directory for write.',
self::FILENAME_ERROR => 'Invalid temporary file name.',
self::FILE_UPLOAD_ERROR => 'The file upload resulted in an error on php level. See http://php.net/manual/en/features.file-upload.errors.php',
];
/**
* Constructs UploadException.
*
* @param int $code
* Error code.
* @param string|null $message
* The error message. Defaults to null.
*/
public function __construct($code, $message = NULL) {
$this->code = $code;
$this->message = isset($message) ? $message : $this->errorMessages[$this->code];
}
/**
* Generates and returns JSON response object for the error.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* JSON response object.
*/
public function getErrorResponse() {
return new JsonResponse([
'jsonrpc' => '2.0',
'error' => $this->errorMessages[$this->code],
'id' => 'id',
], 500);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UploadException:: |
public | property | Code to error message mapping. | |
UploadException:: |
constant | Error with destination folder. | ||
UploadException:: |
constant | Error with temporary file name. | ||
UploadException:: |
constant | File upload resulted in error. | ||
UploadException:: |
public | function | Generates and returns JSON response object for the error. | |
UploadException:: |
constant | Error with input stream. | ||
UploadException:: |
constant | Error moving uploaded file. | ||
UploadException:: |
constant | Error with output stream. | ||
UploadException:: |
public | function | Constructs UploadException. |