All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eventstore.dbclient.ParseError Maven / Gradle / Ivy

package com.eventstore.dbclient;

public class ParseError extends Throwable {
    public ParseError(String connectionString, int from, int to, String expected) {
        super("Unexpected " + connectionString.substring(from, from == to ? from + 1 : to) + " at position " + from + ", expected " + expected);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy