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