All files / lib errors.js

1 2 3 4 5 6 7 8 9 10                   
class ApiError extends Error {
  constructor (response) {
    super('Pagar.me API error. Check error\'s "response" property for more details.')
    this.name = 'ApiError'
    this.response = response
  }
}
 
export default ApiError