UNPKG

sip.js

Version:

A SIP library for JavaScript

11 lines (10 loc) 308 B
import { Exception } from "./exception.js"; /** * Indicates that the operation could not be completed given the current transaction state. * @public */ export class TransactionStateError extends Exception { constructor(message) { super(message ? message : "Transaction state error."); } }