UI for basic import and preparation phase of CSV.
This commit is contained in:
parent
877e0a857d
commit
739b9452de
24 changed files with 907 additions and 138 deletions
|
@ -112,6 +112,12 @@ class DependencyPresentError extends InteroperableError {
|
|||
}
|
||||
}
|
||||
|
||||
class InvalidStateError extends InteroperableError {
|
||||
constructor(msg, data) {
|
||||
super('InvalidStateError', msg, data);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const errorTypes = {
|
||||
InteroperableError,
|
||||
|
@ -131,7 +137,8 @@ const errorTypes = {
|
|||
InvalidConfirmationForSubscriptionError,
|
||||
InvalidConfirmationForAddressChangeError,
|
||||
InvalidConfirmationForUnsubscriptionError,
|
||||
DependencyPresentError
|
||||
DependencyPresentError,
|
||||
InvalidStateError
|
||||
};
|
||||
|
||||
function deserialize(errorObj) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue