File: miscUtils.ts

package info (click to toggle)
node-corepack 0.24.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 262,916 kB
  • sloc: javascript: 94; makefile: 18; sh: 12
file content (5 lines) | stat: -rw-r--r-- 100 bytes parent folder | download
1
2
3
4
5
export class Cancellation extends Error {
  constructor() {
    super(`Cancelled operation`);
  }
}