Files
deck/service/cardarchivedexception.php
T

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);
}
}