oak-pay-business/es/types/DependentExceptions.js

7 lines
292 B
JavaScript

import { makeException as makeDomainException } from 'oak-domain/lib/types/Exception';
import { makeException as makeOgb0Exception } from "oak-general-business";
export default function makeException(data) {
const e = makeDomainException(data) || makeOgb0Exception(data);
return e;
}