blob: f925285054f02d402ce7163b1cea7502758e5645 [file] [log] [blame]
package com.intellij.structuralsearch;
/**
* @author Bas Leijdekkers
*/
public class StructuralSearchException extends RuntimeException {
public StructuralSearchException() {}
public StructuralSearchException(String message) {
super(message);
}
}