smrunner: dependency on ruby module removed
[fedora-idea.git] / platform / testFramework / src / com / intellij / testFramework / exceptionCases / IncorrectOperationExceptionCase.java
blob3d5a867a38568c253da6bf4982d460c276795000
1 package com.intellij.testFramework.exceptionCases;
3 import com.intellij.util.IncorrectOperationException;
5 /**
6 * @author Roman Chernyatchik
7 */
8 public abstract class IncorrectOperationExceptionCase extends AbstractExceptionCase<IncorrectOperationException> {
9 public Class<IncorrectOperationException> getExpectedExceptionClass() {
10 return IncorrectOperationException.class;