UNPKG
react-devise-facebook-encore
Version:
latest (6.4.1)
6.4.1
A simple package to interact with Facebook LogIn API
gastongouron/react-devise-facebook-encore
react-devise-facebook-encore
/
src
/
errors
/
ValidationError.js
10 lines
(8 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
ExtendableError
from
'es6-error'
;
export
default
class
ValidationError
extends
ExtendableError
{
constructor
(
errors
) {
super
();
this
.
errors
= errors;
this
.
name
=
'ValidationError'
; } }