Dart API Referencedart:ioSocketIOException

SocketIOException class

class SocketIOException implements Exception {
 const SocketIOException([String this.message = "",
                          OSError this.osError = null]);
 String toString() {
   StringBuffer sb = new StringBuffer();
   sb.write("SocketIOException");
   if (!message.isEmpty) {
     sb.write(": $message");
     if (osError != null) {
       sb.write(" ($osError)");
     }
   } else if (osError != null) {
     sb.write(": $osError");
   }
   return sb.toString();
 }
 final String message;
 final OSError osError;
}

Implements

Exception

Constructors

const SocketIOException([String message = "", OSError osError = null]) #

const SocketIOException([String this.message = "",
                        OSError this.osError = null]);

Properties

final String message #

final String message

final OSError osError #

final OSError osError

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() {
 StringBuffer sb = new StringBuffer();
 sb.write("SocketIOException");
 if (!message.isEmpty) {
   sb.write(": $message");
   if (osError != null) {
     sb.write(" ($osError)");
   }
 } else if (osError != null) {
   sb.write(": $osError");
 }
 return sb.toString();
}