summaryrefslogtreecommitdiff
path: root/src/library/jvm/cldc/runtime/RichException.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/jvm/cldc/runtime/RichException.scala')
-rw-r--r--src/library/jvm/cldc/runtime/RichException.scala29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/library/jvm/cldc/runtime/RichException.scala b/src/library/jvm/cldc/runtime/RichException.scala
new file mode 100644
index 0000000000..9acab2e052
--- /dev/null
+++ b/src/library/jvm/cldc/runtime/RichException.scala
@@ -0,0 +1,29 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id
+
+
+package scala.runtime
+
+import Predef._
+import compat.Platform.EOL
+
+final class RichException(exc: Throwable) {
+
+ def getStackTraceString: String = {
+ throw new UnsupportedOperationException(exc.toString)
+// val s = new StringBuilder()
+// for (trElem <- exc.getStackTrace()) {
+// s.append(trElem.toString())
+// s.append(EOL)
+// }
+// s.toString()
+ }
+
+}