/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * 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.mongodb;

This exception is thrown when trying to read or write from a closed socket.
Since:3.0
/** * This exception is thrown when trying to read or write from a closed socket. * * @since 3.0 */
public class MongoSocketClosedException extends MongoSocketException { private static final long serialVersionUID = -6855036625330867705L;
Construct an instance.
Params:
  • message – the message
  • address – the server address
/** * Construct an instance. * * @param message the message * @param address the server address */
public MongoSocketClosedException(final String message, final ServerAddress address) { super(message, address); } }