ExceptionUtils rewritten in Kotlin

This commit is contained in:
Andrey Breslav
2014-01-29 17:33:40 +04:00
parent d0787795b6
commit 210827b1d5
28 changed files with 107 additions and 120 deletions
@@ -18,7 +18,7 @@ package org.jetbrains.jet.editor;
import com.intellij.testFramework.EditorTestUtil;
import com.intellij.testFramework.LightCodeInsightTestCase;
import org.jetbrains.jet.utils.ExceptionUtils;
import org.jetbrains.jet.utils.UtilsPackage;
import java.io.IOException;
@@ -315,7 +315,7 @@ public class TypedHandlerTest extends LightCodeInsightTestCase {
checkResultByText(afterText);
}
catch (IOException e) {
throw ExceptionUtils.rethrow(e);
throw UtilsPackage.rethrow(e);
}
}