LavalinkException constructor

LavalinkException({
  1. required DateTime timestamp,
  2. required int status,
  3. required String error,
  4. required String? trace,
  5. required String message,
  6. required String path,
})

Create a new LavalinkException.

Implementation

LavalinkException({
  required this.timestamp,
  required this.status,
  required this.error,
  required this.trace,
  required this.message,
  required this.path,
});