UNPKG

sip.js

Version:

A SIP library for JavaScript

11 lines (10 loc) 319 B
import { Exception } from "../../core/exceptions/exception.js"; /** * An exception indicating an unsupported content type prevented execution. * @public */ export class ContentTypeUnsupportedError extends Exception { constructor(message) { super(message ? message : "Unsupported content type."); } }