update
This commit is contained in:
21
projects/priceservice/vendor/symfony/lock/Exception/ExceptionInterface.php
vendored
Normal file
21
projects/priceservice/vendor/symfony/lock/Exception/ExceptionInterface.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* Base ExceptionInterface for the Lock Component.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
interface ExceptionInterface extends \Throwable
|
||||
{
|
||||
}
|
||||
19
projects/priceservice/vendor/symfony/lock/Exception/InvalidArgumentException.php
vendored
Normal file
19
projects/priceservice/vendor/symfony/lock/Exception/InvalidArgumentException.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
19
projects/priceservice/vendor/symfony/lock/Exception/InvalidTtlException.php
vendored
Normal file
19
projects/priceservice/vendor/symfony/lock/Exception/InvalidTtlException.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* @author Amrouche Hamza <hamza.simperfit@gmail.com>
|
||||
*/
|
||||
class InvalidTtlException extends InvalidArgumentException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
21
projects/priceservice/vendor/symfony/lock/Exception/LockAcquiringException.php
vendored
Normal file
21
projects/priceservice/vendor/symfony/lock/Exception/LockAcquiringException.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* LockAcquiringException is thrown when an issue happens during the acquisition of a lock.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class LockAcquiringException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
25
projects/priceservice/vendor/symfony/lock/Exception/LockConflictedException.php
vendored
Normal file
25
projects/priceservice/vendor/symfony/lock/Exception/LockConflictedException.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
use Symfony\Component\Lock\Lock;
|
||||
|
||||
/**
|
||||
* LockConflictedException is thrown when a lock is acquired by someone else.
|
||||
*
|
||||
* In non-blocking mode it is caught by {@see Lock::acquire()} and {@see Lock::acquireRead()}.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class LockConflictedException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
21
projects/priceservice/vendor/symfony/lock/Exception/LockExpiredException.php
vendored
Normal file
21
projects/priceservice/vendor/symfony/lock/Exception/LockExpiredException.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* LockExpiredException is thrown when a lock may conflict due to a TTL expiration.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class LockExpiredException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
21
projects/priceservice/vendor/symfony/lock/Exception/LockReleasingException.php
vendored
Normal file
21
projects/priceservice/vendor/symfony/lock/Exception/LockReleasingException.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* LockReleasingException is thrown when an issue happens during the release of a lock.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class LockReleasingException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
21
projects/priceservice/vendor/symfony/lock/Exception/LockStorageException.php
vendored
Normal file
21
projects/priceservice/vendor/symfony/lock/Exception/LockStorageException.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* LockStorageException is thrown when an issue happens during the manipulation of a lock in a store.
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class LockStorageException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
23
projects/priceservice/vendor/symfony/lock/Exception/UnserializableKeyException.php
vendored
Normal file
23
projects/priceservice/vendor/symfony/lock/Exception/UnserializableKeyException.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Lock\Exception;
|
||||
|
||||
/**
|
||||
* UnserializableKeyException is thrown when the key contains state that can no
|
||||
* be serialized and the user try to serialize it.
|
||||
* ie. Connection with a database, flock, semaphore, ...
|
||||
*
|
||||
* @author Jérémy Derussé <jeremy@derusse.com>
|
||||
*/
|
||||
class UnserializableKeyException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user