Select Git revision
KeyringException.php
Forked from
Stud.IP / Stud.IP
573 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
KeyringException.php 642 B
<?php
namespace Studip;
use Studip\Exception;
/**
* The KeyringException class represents exceptions that occurr when using keyrings.
*/
class KeyringException extends Exception
{
/**
* The CREATION_FAILED status code means that a keyring could not be created.
*/
public const CREATION_FAILED = 1;
/**
* The NOT FOUND status code means that the search for a keyring did not yield a result.
*/
public const NOT_FOUND = 2;
/**
* The UNSUPPORTED_KEY_ALGORITHM status code means that the selected key algorithm
* is not supported.
*/
public const UNSUPPORTED_KEY_ALGORITHM = 3;
}