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

com.twitter.finatra.json.internal.caseclass.exceptions.FinatraJsonMappingException.scala Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.twitter.finatra.json.internal.caseclass.exceptions

import com.fasterxml.jackson.databind.JsonMappingException

/**
  * Exception for handling Finatra-specific errors that may otherwise be valid
  * in the eyes of Jackson.
  * @param msg gets presented to the end user, so don't leak implementation details.
  */
class FinatraJsonMappingException(
  msg: String)
  extends JsonMappingException(msg) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy