mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
13 lines
235 B
PHP
13 lines
235 B
PHP
<?php
|
|
|
|
namespace OCA\Signer\Exception;
|
|
|
|
use JsonSerializable;
|
|
|
|
class SignerException extends \Exception implements JsonSerializable
|
|
{
|
|
public function jsonSerialize()
|
|
{
|
|
return ['message' => $this->getMessage()];
|
|
}
|
|
}
|