smrunner: dependency on ruby module removed
[fedora-idea.git] / platform / testFramework / src / com / intellij / testFramework / exceptionCases / IllegalArgumentExceptionCase.java
blob7633f4d4a11b15c0e25a1667e38a06c1fb46e6d5
1 package com.intellij.testFramework.exceptionCases;
3 /**
4 * @author Dennis.Ushakov
5 */
6 public abstract class IllegalArgumentExceptionCase extends AbstractExceptionCase<IllegalArgumentException>{
7 public Class<IllegalArgumentException> getExpectedExceptionClass() {
8 return IllegalArgumentException.class;