View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package mockit.internal.util;
7   
8   public final class VisitInterruptedException extends RuntimeException {
9       private static final long serialVersionUID = 1L;
10      public static final VisitInterruptedException INSTANCE = new VisitInterruptedException();
11  
12      private VisitInterruptedException() {
13      }
14  }