UNPKG

cirsim

Version:

Cirsim Circuit Simulator

12 lines (9 loc) 202 B
/** * Exceptions thrown by testing * @param msg The exception message * @constructor */ export const TestException = function(msg) { this.msg = msg; } export default TestException;