@nestjs/common#NotImplementedException TypeScript Examples

The following examples show how to use @nestjs/common#NotImplementedException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DockerProvider.ts    From amplication with Apache License 2.0 5 votes vote down vote up
async getStatus(statusQuery: any): Promise<BuildResult> {
    throw new NotImplementedException(
      "getStatus is not implemented for DockerProvider"
    );
  }
Example #2
Source File: DockerProvider.ts    From amplication with Apache License 2.0 5 votes vote down vote up
async getStatus(statusQuery: any): Promise<DeployResult> {
    throw new NotImplementedException(
      "getStatus is not implemented for DockerProvider"
    );
  }
Example #3
Source File: app.controller.ts    From nestjs-jaeger-tracing with MIT License 5 votes vote down vote up
@Get('error')
  getError(@Tracing() tracing: TracingData): never {
    Logger.log({ getError: tracing });
    throw new NotImplementedException();
  }