Files
quicknotes/controller/errors.php
Matias De lellis 886605bc01 Initial release
2016-05-20 09:46:46 -03:00

24 lines
449 B
PHP

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