W.I.P Smime:

- Implement passphrase missing exception
This commit is contained in:
Hadi Nategh 2017-07-19 15:41:55 +02:00
parent 7eccf7c0c9
commit 2ead0ae2fb

View File

@ -0,0 +1,23 @@
<?php
/**
* EGroupware API - Exceptions
*
* @link http://www.egroupware.org
* @author Hadi Nategh <hn@egroupware.org>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package Mail
* @subpackage Smime
* @access public
* @version $Id$
*/
namespace EGroupware\Api\Mail\Smime;
use EGroupware\Api;
/**
* Smime passphrase missing exception
*
* As you get this only by an error in the code or during development, the message does not need to be translated
*/
class PassphraseMissing extends Api\Exception\AssertionFailed { }