ConflictException constructor

const ConflictException(
  1. String message
)

Creates a ConflictException with the specified message.

The message is a human-readable description of the conflict error.

Implementation

const ConflictException(String message) : super(message, HttpStatus.conflict);