Home
last modified time | relevance | path

Searched refs:FileUploadException (Results 1 – 25 of 33) sorted by relevance

12

/dports/finance/prestashop/prestashop/src/Core/File/
H A DFileUploader.php33 use PrestaShop\PrestaShop\Core\File\Exception\FileUploadException; alias
105 * @throws FileUploadException
117 throw new FileUploadException();
142 * @throws FileUploadException
151 throw new FileUploadException();
168 * @throws FileUploadException
182 throw new FileUploadException();
/dports/finance/prestashop/prestashop/src/Core/Domain/Shop/Command/
H A DUploadLogosCommand.php29 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
72 * @throws FileUploadException
94 * @throws FileUploadException
116 * @throws FileUploadException
138 * @throws FileUploadException
169 * @throws FileUploadException
176 throw new FileUploadException($uploadedFile->getErrorMessage(), $errorCode);
/dports/finance/prestashop/prestashop/src/Adapter/Cart/CommandHandler/
H A DAddCustomizationHandler.php36 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
63 * @throws FileUploadException
132 * @throws FileUploadException
141 throw new FileUploadException('An error occurred during the image upload process.');
153 throw new FileUploadException('An error occurred when resizing the uploaded image');
166 * @throws FileUploadException
173 …throw new FileUploadException(sprintf('Image is too large (%s kB). Maximum allowed: %s kB', $file-…
177 …throw new FileUploadException('Image format not recognized, allowed formats are: .gif, .jpg, .png'…
181 throw new FileUploadException('Error while uploading image', $file->getError());
/dports/finance/prestashop/prestashop/src/Core/Import/File/
H A DFileUploader.php30 use PrestaShopBundle\Exception\FileUploadException; alias
70 * @throws FileUploadException
75 throw new FileUploadException($error);
92 throw new FileUploadException($error);
/dports/finance/prestashop/prestashop/src/Adapter/File/Uploader/
H A DVirtualProductFileUploader.php34 use PrestaShop\PrestaShop\Core\File\Exception\FileUploadException; alias
108 * @throws FileUploadException
115 throw new FileUploadException($e->getMessage(), 0, $e);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/multipart/
H A DMultipartSupportFactoryImpl.java17 import org.apache.commons.fileupload.FileUploadException;
23 public static final Class<?> FAIL_EARLY = FileUploadException.class;
H A DMultipartSupportImpl.java24 import org.apache.commons.fileupload.FileUploadException;
104 catch (FileUploadException fnfe) { in parseRequest()
/dports/lang/elm/compiler-0.19.1/_cabal_deps/snap-core-1.0.4.1/src/Snap/Util/
H A DFileUploads.hs116 , FileUploadException
125 …ernal.Util.FileUploads (BadPartException (badPartExceptionReason), FileUploadException, FileUpload…
/dports/finance/prestashop/prestashop/src/Core/Form/IdentifiableObject/DataHandler/
H A DProductImageFormDataHandler.php32 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
61 throw new FileUploadException('No file was uploaded', UPLOAD_ERR_NO_FILE);
/dports/finance/prestashop/prestashop/src/Adapter/Shop/CommandHandler/
H A DUploadLogosHandler.php30 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
79 * @throws FileUploadException
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web/src/main/java/org/springframework/web/multipart/commons/
H A DCommonsMultipartFile.java28 import org.apache.commons.fileupload.FileUploadException;
146 catch (FileUploadException ex) { in transferTo()
H A DCommonsMultipartResolver.java27 import org.apache.commons.fileupload.FileUploadException;
162 catch (FileUploadException ex) {
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/multipart/
H A DCommonsPortletMultipartResolver.java27 import org.apache.commons.fileupload.FileUploadException;
157 catch (FileUploadException ex) {
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Exception/
H A DFileUploadException.php32 class FileUploadException extends \RuntimeException class
/dports/finance/prestashop/prestashop/src/Core/Domain/Exception/
H A DFileUploadException.php41 class FileUploadException extends DomainException class
/dports/finance/prestashop/prestashop/src/Core/File/Exception/
H A DFileUploadException.php34 class FileUploadException extends FileException class
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Controller/Admin/Sell/Catalog/Product/
H A DImageController.php32 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
242 FileUploadException::class => [
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Controller/Admin/Sell/Order/
H A DCartController.php50 use PrestaShop\PrestaShop\Core\Domain\Exception\FileUploadException; alias
531 * @throws FileUploadException
539 …throw new FileUploadException('Some files were possibly not uploaded due to post_max_size limit', …
607 FileUploadException::class => [
/dports/www/itop/web/datamodels/2.x/itop-portal-base/portal/src/controllers/
H A Duserprofilebrickcontroller.class.inc.php23 use FileUploadException; alias
329 catch (FileUploadException $e)
/dports/www/itop/web/application/
H A Dutils.inc.php43 class FileUploadException extends Exception class
413 …throw new FileUploadException(Dict::Format('UI:Error:UploadedFileTooBig', ini_get('upload_max_file…
417 throw new FileUploadException(Dict::S('UI:Error:UploadedFileTruncated.'));
421 throw new FileUploadException(Dict::S('UI:Error:NoTmpDir'));
425 …throw new FileUploadException(Dict::Format('UI:Error:CannotWriteToTmp_Dir', ini_get('upload_tmp_di…
430 … throw new FileUploadException(Dict::Format('UI:Error:UploadStoppedByExtension_FileName', $sName));
434 throw new FileUploadException(Dict::Format('UI:Error:UploadFailedUnknownCause_Code', $sError));
/dports/finance/prestashop/prestashop/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/
H A DImportController.php33 use PrestaShopBundle\Exception\FileUploadException; alias
152 } catch (FileUploadException $e) {
/dports/www/itop/web/datamodels/2.x/itop-attachments/
H A Dajax.attachment.php82 catch (FileUploadException $e)
/dports/devel/libphonenumber/libphonenumber-8.12.39/migrator/migrator-servlet/src/main/java/com/google/phonenumbers/
H A DServletMain.java27 import org.apache.commons.fileupload.FileUploadException;
101 } catch (FileUploadException e) { in doPost()
/dports/lang/elm/compiler-0.19.1/_cabal_deps/snap-core-1.0.4.1/src/Snap/Internal/Util/
H A DFileUploads.hs59 , FileUploadException(..)
468 data FileUploadException = forall e . (ExceptionWithReason e, Show e) => function
479 instance Show FileUploadException where
484 instance Exception FileUploadException
489 fileUploadExceptionReason :: FileUploadException -> Text
/dports/lang/elm/compiler-0.19.1/_cabal_deps/snap-core-1.0.4.1/test/Snap/Util/FileUploads/
H A DTests.hs28 import Snap.Internal.Util.FileUploads (BadPartException (..), FileUploadException (..), F…
518 h !(e :: FileUploadException) = do
544 h !(e :: FileUploadException) = do
567 h !(e :: FileUploadException) = do
729 fromException (toException pvi)) :: FileUploadException)

12