/**
 * Base class for domain exceptions
 *
 * No utility here, except that you can differentiate this exceptions
 * from unexpected errors by using instanceof operator.
 *
 * @export
 * @class DomainException
 * @extends {Error}
 */
export declare class DomainException extends Error {
}
