Files
deck/service/cardarchivedexception.php
2016-08-16 13:25:58 +02:00

13 lines
221 B
PHP

<?php
namespace OCA\Deck\Service;
class CardArchivedException extends \Exception {
/**
* Constructor
* @param string $msg the error message
*/
public function __construct($msg){
parent::__construct($msg);
}
}