summaryrefslogtreecommitdiff
path: root/platform/structuralsearch/source/com/intellij/structuralsearch/StructuralSearchException.java
blob: f925285054f02d402ce7163b1cea7502758e5645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

package com.intellij.structuralsearch;

/**
 * @author Bas Leijdekkers
 */
public class StructuralSearchException extends RuntimeException {
  public StructuralSearchException() {}

  public StructuralSearchException(String message) {
    super(message);
  }
}