GoneException constructor

const GoneException(
  1. String message
)

Creates a GoneException with the specified message.

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

Implementation

const GoneException(String message) : super(message, HttpStatus.gone);