mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-02-12 03:59:38 +00:00
11 lines
251 B
PHP
11 lines
251 B
PHP
<?php
|
|
|
|
namespace OCA\Files_External_Ethswarm\Exception;
|
|
|
|
use Exception;
|
|
|
|
class SwarmException extends Exception {
|
|
public function __construct($message, $code = 0, ?Exception $previous = null) {
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|