blob: 1236264118c2807979b94ff58fa04a0faee783ae [file] [log] [blame]
package com.intellij.structuralsearch;
/**
* Exception about encountering yet unsupported pattern event.
*/
public class UnsupportedPatternException extends RuntimeException {
public UnsupportedPatternException(String _pattern) {
super(_pattern);
}
}