Remove CSS code
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / ConflictingVersionException.java
diff --git a/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ConflictingVersionException.java b/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ConflictingVersionException.java
deleted file mode 100644 (file)
index 9e3c501..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.controller.config.api;
-
-/**
- * Can be thrown during
- * {@link ConfigRegistry#commitConfig(javax.management.ObjectName)} to indicate
- * that the transaction cannot be committed due to the fact that another
- * transaction was committed after creating this transaction. Clients can create
- * new transaction and merge the changes.
- */
-public class ConflictingVersionException extends Exception {
-    private static final long serialVersionUID = 1L;
-
-    public ConflictingVersionException() {
-    }
-
-    public ConflictingVersionException(final String message, final Throwable cause) {
-        super(message, cause);
-    }
-
-    public ConflictingVersionException(final String message) {
-        super(message);
-    }
-
-    public ConflictingVersionException(final Throwable cause) {
-        super(cause);
-    }
-
-}