You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by bp...@apache.org on 2015/05/22 04:45:45 UTC

svn commit: r1680979 - /db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java

Author: bpendleton
Date: Fri May 22 02:45:45 2015
New Revision: 1680979

URL: http://svn.apache.org/r1680979
Log:
DERBY-6800: Implement DerbySQLIntegrityConstraintViolationException class

This change adds the new DerbySQLIntegrityConstraintViolationException class,
which extends java.sql.SQLIntegrityConstraintViolationException, but adds
additional methods getConstraintName and getTableName.

This patch was contributed by Abhinav Gupta (abhinavgupta2004 at gmail dot com)


Added:
    db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java   (with props)

Added: db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java?rev=1680979&view=auto
==============================================================================
--- db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java (added)
+++ db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java Fri May 22 02:45:45 2015
@@ -0,0 +1,43 @@
+/*
+ * 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.
+ */
+
+package org.apache.derby.shared.common.error;
+
+import java.sql.SQLIntegrityConstraintViolationException;
+
+public  class  DerbySQLIntegrityConstraintViolationException   
+	extends SQLIntegrityConstraintViolationException
+{
+       public  DerbySQLIntegrityConstraintViolationException(
+			String reason,
+			String SQLState,
+			int vendorCode,
+			Throwable cause,
+			Object argsOne,
+			Object argsTwo)
+	{
+		super( reason, SQLState, vendorCode, cause );
+		tableName = argsOne.toString();
+		constraintName = argsTwo.toString();
+	}
+
+	public String getTableName() { return tableName; }
+	public String getConstraintName() { return constraintName; }
+
+	private String tableName;
+	private String constraintName;
+}

Propchange: db/derby/code/trunk/java/shared/org/apache/derby/shared/common/error/DerbySQLIntegrityConstraintViolationException.java
------------------------------------------------------------------------------
    svn:eol-style = native