JobNotFoundException constructor

JobNotFoundException({
  1. String? type,
  2. String? message,
})

Implementation

JobNotFoundException({String? type, String? message})
    : super(type: type, code: 'JobNotFoundException', message: message);