MVN

com.github.brunoais : wrapped-exception

Maven & Gradle

Jan 16, 2018

com.github.brunoais.WrappedException · This is an exception for when you need to wrap more information around the exception you actually want to throw. This is mostly useful when programming with Java's functional interface in a "then" chain where the methods' code are outside the method where the "then" are called/chained

<dependency>
    <groupId>com.github.brunoais</groupId>
    <artifactId>wrapped-exception</artifactId>
    <version>0.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.brunoais : wrapped-exception to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.3.0

All Versions

Choose a version of com.github.brunoais : wrapped-exception to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.3.x
wrapped-exception-0.3.0

How to add a dependency to Maven

Add the following com.github.brunoais : wrapped-exception maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.brunoais</groupId>
    <artifactId>wrapped-exception</artifactId>
    <version>0.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.brunoais : wrapped-exception gradle dependency to your build.gradle file:

implementation 'com.github.brunoais:wrapped-exception:0.3.0'

Gradle Kotlin DSL: Add the following com.github.brunoais : wrapped-exception gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.brunoais:wrapped-exception:0.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.brunoais : wrapped-exception sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.brunoais" % "wrapped-exception" % "0.3.0"