# Class: com.pnfsoftware.jeb.util.concurrent.ConcurrentException

This exception can be raised when a concurrency error is detected.

## Constructor: ConcurrentException

Description: Create a concurrency exception without detail message or cause.

## Constructor: ConcurrentException
- parameter: `message`, type: `java.lang.String`

Description: Create a concurrency exception with a detail message.
parameter: message: detail message

## Constructor: ConcurrentException
- parameter: `cause`, type: `java.lang.Throwable`

Description: Create a concurrency exception with a cause.
parameter: cause: cause of this exception

## Constructor: ConcurrentException
- parameter: `message`, type: `java.lang.String`
- parameter: `cause`, type: `java.lang.Throwable`

Description: Create a concurrency exception with a detail message and cause.
parameter: message: detail message
parameter: cause: cause of this exception

