import { Exception } from "../../core"; /** * An exception indicating an unsupported content type prevented execution. * @public */ export class ContentTypeUnsupportedError extends Exception { public constructor(message?: string) { super(message ? message : "Unsupported content type."); } }