{"version":3,"sources":["../../src/error/CannotExecuteNotConnectedError.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH;IAAoD,0DAAK;IAGrD,wCAAY,cAAsB;QAAlC,YACI,iBAAO,SAGV;QAND,UAAI,GAAG,gCAAgC,CAAC;QAIpC,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,8BAA8B,CAAC,SAAS,CAAC,CAAC;QACtE,KAAI,CAAC,OAAO,GAAG,mCAAgC,cAAc,6DAAyD,CAAC;;IAC3H,CAAC;IAEL,qCAAC;AAAD,CATA,AASC,CATmD,KAAK,GASxD;AATY,wEAA8B","file":"CannotExecuteNotConnectedError.js","sourcesContent":["/**\n * Thrown when consumer tries to execute operation allowed only if connection is opened.\n */\nexport class CannotExecuteNotConnectedError extends Error {\n name = \"CannotExecuteNotConnectedError\";\n\n constructor(connectionName: string) {\n super();\n Object.setPrototypeOf(this, CannotExecuteNotConnectedError.prototype);\n this.message = `Cannot execute operation on \"${connectionName}\" connection because connection is not yet established.`;\n }\n\n}"],"sourceRoot":".."}
|