java.lang.reflect.UndeclaredThrowableException Scala Examples
The following examples show how to use java.lang.reflect.UndeclaredThrowableException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
Example 1
Source File: ErrorHandlers.scala From daf with BSD 3-Clause "New" or "Revised" License | 5 votes |
package daf.web import java.io.FileNotFoundException import java.lang.reflect.UndeclaredThrowableException import daf.error.InvalidRequestException import it.gov.daf.common.web.ErrorHandler import org.apache.spark.sql.AnalysisException import org.ietf.jgss.GSSException import play.api.mvc.Results object ErrorHandlers { val security: ErrorHandler = { case _: GSSException => Results.Unauthorized } val spark: ErrorHandler = { case _: FileNotFoundException => Results.NotFound case _: AnalysisException => Results.NotFound case error: UndeclaredThrowableException if error.getUndeclaredThrowable.isInstanceOf[AnalysisException] => Results.NotFound } val api: ErrorHandler = { case error: InvalidRequestException => Results.BadRequest { error.getMessage } } }
Example 2
Source File: RPCUtils.scala From Linkis with Apache License 2.0 | 5 votes |
package com.webank.wedatasphere.linkis.rpc.utils import java.lang.reflect.UndeclaredThrowableException import java.net.ConnectException import com.netflix.client.ClientException import com.webank.wedatasphere.linkis.rpc.exception.NoInstanceExistsException import com.webank.wedatasphere.linkis.rpc.sender.SpringCloudFeignConfigurationCache import feign.RetryableException import org.apache.commons.lang.StringUtils import scala.collection.JavaConversions._ object RPCUtils { def isReceiverNotExists(t: Throwable): Boolean = t match { case connect: ConnectException => connect.getMessage != null && connect.getMessage.contains("Connection refused") case _: NoInstanceExistsException => true case t: UndeclaredThrowableException => t.getCause match { case _: NoInstanceExistsException => true case _ => false } case t: RetryableException => t.getCause match { case connect: ConnectException => connect.getMessage != null && connect.getMessage.contains("Connection refused") case _ => false } case t: RuntimeException => t.getCause match { case client: ClientException => StringUtils.isNotBlank(client.getErrorMessage) && client.getErrorMessage.contains("Load balancer does not have available server for client") case _ => false } case _ => false } def findService(parsedServiceId: String, tooManyDeal: List[String] => Option[String]): Option[String] = { val services = SpringCloudFeignConfigurationCache.getDiscoveryClient .getServices.filter(_.toLowerCase.contains(parsedServiceId.toLowerCase)).toList if(services.length == 1) Some(services.head) else if(services.length > 1) tooManyDeal(services) else None } }
Example 3
Source File: RealMarshallerTestFixture.scala From ncdbg with BSD 3-Clause "New" or "Revised" License | 5 votes |
package com.programmaticallyspeaking.ncd.nashorn import java.lang.reflect.UndeclaredThrowableException import com.programmaticallyspeaking.ncd.host._ import com.programmaticallyspeaking.ncd.messaging.Observer import com.programmaticallyspeaking.ncd.testing.UnitTest import scala.concurrent.duration._ import scala.concurrent.{ExecutionContext, Promise} import scala.util.control.NonFatal trait RealMarshallerTestFixture extends UnitTest with NashornScriptHostTestFixture { override implicit val executionContext: ExecutionContext = ExecutionContext.global protected def evaluateExpression(expr: String)(tester: (ScriptHost, ValueNode) => Unit): Unit = { val wrapped = s"""|(function (result) { |debugger; |})($expr); """.stripMargin val resultPromise = Promise[ValueNode]() val observer = new Observer[ScriptEvent] { override def onNext(item: ScriptEvent): Unit = item match { case bp: HitBreakpoint => bp.stackFrames.headOption match { case Some(sf) => val maybeResultLocal = sf.scopeChain.find(_.scopeType == ScopeType.Local).flatMap(s => { s.value match { case obj: ObjectNode => try { getHost.getObjectProperties(obj.objectId, true, false).find(_._1 == "result").flatMap(_._2.value) } catch { case NonFatal(t) => resultPromise.tryFailure(unpack(t)) None } case _ => None } }) maybeResultLocal match { case Some(node) => resultPromise.success(node) case None => resultPromise.tryFailure(new Exception("No 'result' local")) } case None => resultPromise.tryFailure(new Exception("No stack frame")) } case _ => // ignore } override def onError(error: Throwable): Unit = resultPromise.tryFailure(error) override def onComplete(): Unit = {} } observeAndRunScriptAsync(wrapped, observer) { host => resultPromise.future.map(node => { tester(host, node) }) } } }