1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16:
<?php
namespace qdb;
/**
* Thrown when an entry with the same alias is already present in the database.
*
* @example
* <code>
* $cluster->blob('alias')->put('content1');
* $cluster->blob('alias')->put('content2'); // throws QdbAliasAlreadyExistsException
* </code>
*/
final class QdbAliasAlreadyExistsException extends QdbOperationException
{
}
?>