Skip to main content
Module

x/tombaio/src/exception.ts

Official Deno library for Tomba Email Finder
Go to Latest
File
export class TombaException { message: String; code: Number; response: any;
constructor(message: String, code: Number = 0, response: any = "") { this.message = message; this.code = code; this.response = response; }}