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

com.hazelcast.client.UndefinedErrorCodeException Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.client;

import com.hazelcast.core.HazelcastException;
import com.hazelcast.spi.impl.operationservice.WrappableException;

/**
 * This exception is thrown when an exception that is coming from server is not recognized by the protocol and
 * it can not be constructed by the client via reflection.
 * For the client to be able to recreate original exception it should be available on the classpath and
 * it should have one of the following constructors publicly.
 * new Throwable(String message, Throwable cause)
 * new Throwable(Throwable cause)
 * new Throwable(String message)
 * new Throwable()
 * 

* Class name of the original exception is included in the exception. */ public class UndefinedErrorCodeException extends HazelcastException implements WrappableException { private final String className; public UndefinedErrorCodeException(String message, String className, Throwable cause) { super("Class name: " + className + ", Message: " + message, cause); this.className = className; } /** * Construct a new {@code UndefinedErrorCodeException} with {@code other} as its * cause and {@code other}'s message. * * @param other */ private UndefinedErrorCodeException(UndefinedErrorCodeException other) { super(other.getMessage(), other); this.className = other.className; } /** * @return name of the original class name */ public String getOriginClassName() { return className; } @Override public UndefinedErrorCodeException wrap() { return new UndefinedErrorCodeException(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy