andrehtissot/dexie-orm-addon

View on GitHub
src/exceptions/MethodMustBeImplementedException.js

Summary

Maintainability
A
0 mins
Test Coverage
import addCaptureStackTrace from './addCaptureStackTrace'

export default class DORMWMethodMustBeImplementedException extends Error {
    constructor(functionName, ...params) {
        super(`${functionName} must be implemented in the extending class`, ...params)
        addCaptureStackTrace(this)
    }
}