Dart Documentationredis_clientRedisClientException

RedisClientException class

class RedisClientException implements Exception {

 String message;

 RedisClientException(this.message);

 String toString() => "RedisClientException: $message";

}

Implements

Exception

Constructors

new RedisClientException(String message) #

RedisClientException(this.message);

Properties

String message #

String message

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "RedisClientException: $message";