FixedProxyException.java

// Copyright (c) ZeroC, Inc.

package com.zeroc.Ice;

/** The exception that is thrown when attempting to change a connection-related property on a fixed proxy. */
public final class FixedProxyException extends LocalException {
    /** Constructs a FixedProxyException. */
    public FixedProxyException() {
        super("Cannot change the connection properties of a fixed proxy.");
    }

    @Override
    public String ice_id() {
        return "::Ice::FixedProxyException";
    }

    private static final long serialVersionUID = 3198117120780643493L;
}