aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ava/lib/ava-error.js
blob: 05df6b34985f6ec4ea064792108893b02b79cd1e (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

class AvaError extends Error {
	constructor(message) {
		super(message);
		this.name = 'AvaError';
	}
}

module.exports = AvaError;