aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector/selectorError.js
blob: a02e516da3c71394479f0afca1758ea7940a0a2d (plain)
1
2
3
4
5
function selectorError( msg ) {
	throw new Error( "Syntax error, unrecognized expression: " + msg );
}

export default selectorError;