fission-suite/webnative

View on GitHub
src/fs/errors.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class NoPermissionError extends Error {
  constructor(message: string) {
    super(message)
    this.name = "NoPermissionError"
  }
}