Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Derby - Class com.pivotal.gemfirexd.internal.client.am.DisconnectException
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
*/
/*
* Changes for GemFireXD distributed data platform (some marked by "GemStone changes")
*
* Portions Copyright (c) 2010-2015 Pivotal Software, 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. See accompanying
* LICENSE file.
*/
package com.pivotal.gemfirexd.internal.client.am;
import com.pivotal.gemfirexd.internal.shared.common.reference.SQLState;
public class DisconnectException extends SqlException {
public DisconnectException(Agent agent, ClientMessageId msgid,
Object[] args, SqlCode sqlcode, Throwable t) {
super(agent != null ? agent.logWriter_ : null, msgid,
args, sqlcode, t);
// make the call to close the streams and socket.
if (agent != null) {
agent.disconnectEvent();
}
}
public DisconnectException(Agent agent, ClientMessageId msgid,
Object[] args, SqlCode sqlcode) {
this(agent, msgid, args, sqlcode, (Throwable)null);
}
public DisconnectException(Agent agent, ClientMessageId msgid, SqlCode sqlcode) {
this(agent, msgid, (Object[]) null, sqlcode);
}
public DisconnectException(Agent agent, ClientMessageId msgid,
Object[] args) {
this(agent, msgid, args, SqlCode.disconnectError);
}
public DisconnectException(Agent agent, ClientMessageId msgid,
Object[] args, Throwable t) {
this(agent, msgid, args, SqlCode.disconnectError, (Throwable)t);
}
public DisconnectException(Agent agent, ClientMessageId msgid,
Object arg1, Throwable t) {
this(agent, msgid, new Object[] { arg1 }, t);
}
public DisconnectException(Agent agent, ClientMessageId msgid) {
this(agent, msgid, (Object[])null);
}
public DisconnectException(Agent agent, ClientMessageId msgid, Object arg1) {
this(agent, msgid, new Object[] { arg1 });
}
public DisconnectException(Agent agent, ClientMessageId msgid, Object arg1,
Object arg2) {
this(agent, msgid, new Object[] { arg1, arg2 });
}
public DisconnectException(Agent agent, SqlException e) {
super(agent.logWriter_,
new ClientMessageId(SQLState.DRDA_CONNECTION_TERMINATED),
e.getMessage(), e);
}
// GemStone changes BEGIN
public DisconnectException(Agent agent, Sqlca sqlca) {
super(agent != null ? agent.logWriter_ : null, sqlca);
// make the call to close the streams and socket.
if (agent != null) {
agent.disconnectEvent();
}
}
// GemStone changes END
}