package io.delphiplatform.api.v3.bigtable;

public class ParseProtoException extends RuntimeException {

    public ParseProtoException() {
    }

    public ParseProtoException(String message) {
        super(message);
    }

    public ParseProtoException(String message, Throwable cause) {
        super(message, cause);
    }

    public ParseProtoException(Throwable cause) {
        super(cause);
    }

    public ParseProtoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}
