File: /home/accemeff/vendor/craftcms/cms/src/errors/UploadFailedException.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\errors;
use Craft;
/**
* Class UploadFailedException
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class UploadFailedException extends FileException
{
/**
* @var int Error code
*/
public $errorCode;
/**
* Constructor
*
* @param int $errorCode
* @param string|null $message
* @param \Throwable|null $previous
*/
public function __construct(int $errorCode = 0, string $message = null, \Throwable $previous = null)
{
$this->errorCode = $errorCode;
if ($message === null) {
switch ($errorCode) {
case UPLOAD_ERR_INI_SIZE:
case UPLOAD_ERR_FORM_SIZE:
$message = Craft::t('app', 'The uploaded file exceeds the maximum allowed size.');
break;
case UPLOAD_ERR_PARTIAL:
case UPLOAD_ERR_NO_FILE:
$message = Craft::t('app', 'The file failed to upload to the server properly.');
break;
case UPLOAD_ERR_NO_TMP_DIR:
$message = Craft::t('app', 'Could not write to the temporary upload folder.');
break;
case UPLOAD_ERR_CANT_WRITE:
$message = Craft::t('app', 'There was a problem with writing the file to the disk.');
break;
default:
$message = Craft::t('app', 'There was a problem with uploading the file.');
}
}
parent::__construct($message, 0, $previous);
}
/**
* @return string the user-friendly name of this exception
*/
public function getName()
{
return 'Upload failed';
}
}