MVN

de.tfh-berlin.knabe : multex

Maven & Gradle

May 02, 2007

MulTEx - the Multi-Tier Exception Handling Framework · MulTEx is a simple, but powerful framework for organizing exceptions and messages in a multi-tier Java software system. It offers the key features: Causal chains/trees as a means to capture low-level error information Redundancy-free stack traces in the case of indirectly caused exceptions Internationalizable message texts and parameters for exceptions Services for reporting an exception with its causal chain/tree onto streams and screens A standard way for writing method bodies with regard to exceptions. MulTEx depends on Java >= 1.4

<dependency>
    <groupId>de.tfh-berlin.knabe</groupId>
    <artifactId>multex</artifactId>
    <version>7.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.tfh-berlin.knabe : multex to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 7.1

All Versions

Choose a version of de.tfh-berlin.knabe : multex to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
7.1
multex-7.1

How to add a dependency to Maven

Add the following de.tfh-berlin.knabe : multex maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.tfh-berlin.knabe</groupId>
    <artifactId>multex</artifactId>
    <version>7.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.tfh-berlin.knabe : multex gradle dependency to your build.gradle file:

implementation 'de.tfh-berlin.knabe:multex:7.1'

Gradle Kotlin DSL: Add the following de.tfh-berlin.knabe : multex gradle kotlin dependency to your build.gradle.kts file:

implementation("de.tfh-berlin.knabe:multex:7.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.tfh-berlin.knabe : multex sbt scala dependency to your build.sbt file:

libraryDependencies += "de.tfh-berlin.knabe" % "multex" % "7.1"