import { Catch } from "https://deno.land/x/deno_nest@v3.6.0/src/filter.ts";
Decorator that marks a class as a Nest exception filter. An exception filter handles exceptions thrown by or not handled by your application code.
The decorated class must implement the ExceptionFilter
interface.
Parameters
...exceptions: Array<Type<any>>
one or more exception types specifying the exceptions to be caught and handled by this filter.