export class BuildableError extends Error {
  code: number
  type: string
  data: any

  constructor({ message, code, type, data } : { message: string, code: number, type: string, data: any }) {
    super(message)
    this.code = code
    this.type = type
    this.data = data
  }
}