20 lines
451 B
PHP
20 lines
451 B
PHP
<?php
|
|
|
|
namespace OCA\UPschooling\Controller;
|
|
|
|
use Closure;
|
|
use OCA\UPschooling\Service\NoteNotFound;
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
trait Errors {
|
|
protected function handleNotFound(Closure $callback): DataResponse {
|
|
try {
|
|
return new DataResponse($callback());
|
|
} catch (NoteNotFound $e) {
|
|
$message = ['message' => $e->getMessage()];
|
|
return new DataResponse($message, Http::STATUS_NOT_FOUND);
|
|
}
|
|
}
|
|
}
|