1 /* 2 * Copyright (c) 2006 JMockit developers 3 * This file is subject to the terms of the MIT license (see LICENSE.txt). 4 */ 5 package mockit.internal.util; 6 7 public final class VisitInterruptedException extends RuntimeException { 8 private static final long serialVersionUID = 1L; 9 public static final VisitInterruptedException INSTANCE = new VisitInterruptedException(); 10 11 private VisitInterruptedException() { 12 } 13 }