com.ossuminc.riddl.utils.ExceptionUtils.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riddl-utils_sjs1_3 Show documentation
Show all versions of riddl-utils_sjs1_3 Show documentation
Various utilities used throughout riddl libraries
The newest version!
/*
* Copyright 2019 Ossum, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
package com.ossuminc.riddl.utils
object ExceptionUtils {
import scala.scalajs.js.annotation.JSExport
// NOTE: Can't get exception stack traces from Scala in JS Environment
@JSExport
def getRootCauseStackTrace(exception: Throwable): Array[String] = Array.empty[String]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy