module vksdk.exceptions.ClientException;

class ClientException : Exception {

    this(string message) {
        super(message);
    }
}