All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nirvana.support.services.RunInNoExceptionThrown.scala Maven / Gradle / Ivy

// Copyright 2014 Jun Tsai. All rights reserved.
// site: http://www.ganshane.com
package nirvana.support.services


/**
 * run some function in no exception thrown
 */
trait RunInNoExceptionThrown {
  this: LoggerSupport =>
  def runInNotExceptionThrown(fun: =>Unit){
    try{fun}catch{case e: Throwable => logger.error(e.getMessage,e)}
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy