import { HttpResponseMessage } from"../lifecycle";
import { Exception } from"../core";
/**
* Expection class to throw not found 404 when route not found
*/exportdeclareclassNotFoundException<T> extendsException<T> {
httpResponseMessage: HttpResponseMessage<T>;
constructor();
}