aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-spec/src/examples/errors.ts
blob: 81f29d81cbcf3707bedc45c809e409f7192e9ea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const validationError = {
    code: 100,
    reason: 'Validation failed',
    validationErrors: [
        {
            field: 'networkId',
            code: 1006,
            reason: 'Network id 42 is not supported',
        },
    ],
};