Check for archived cards before action in backend

This commit is contained in:
Julius Haertl
2016-08-16 13:13:54 +02:00
parent 376ad88df2
commit a57d270a93
8 changed files with 56 additions and 81 deletions

View File

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