01: package org.uispec4j.interception.toolkit; 02: 03: /** 04: * Thrown when an internal error occured when UISpec mock the display. 05: */ 06: public class InterceptionInternalError extends Error { 07: public InterceptionInternalError(String msg) { 08: super(msg); 09: } 10: }