You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2015/07/17 19:50:16 UTC

kafka git commit: Adding a file missed while committing KAFKA-2345

Repository: kafka
Updated Branches:
  refs/heads/trunk a5b11886d -> 846362724


Adding a file missed while committing KAFKA-2345


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/84636272
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/84636272
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/84636272

Branch: refs/heads/trunk
Commit: 84636272422b6379d57d4c5ef68b156edc1c67f8
Parents: a5b1188
Author: Gwen Shapira <cs...@gmail.com>
Authored: Fri Jul 17 10:49:40 2015 -0700
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Fri Jul 17 10:49:40 2015 -0700

----------------------------------------------------------------------
 ...TopicAlreadyMarkedForDeletionException.scala | 21 ++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/84636272/core/src/main/scala/kafka/common/TopicAlreadyMarkedForDeletionException.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/kafka/common/TopicAlreadyMarkedForDeletionException.scala b/core/src/main/scala/kafka/common/TopicAlreadyMarkedForDeletionException.scala
new file mode 100644
index 0000000..c83cea9
--- /dev/null
+++ b/core/src/main/scala/kafka/common/TopicAlreadyMarkedForDeletionException.scala
@@ -0,0 +1,21 @@
+/**
+ * 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 kafka.common
+
+class TopicAlreadyMarkedForDeletionException(message: String) extends RuntimeException(message) {
+}
\ No newline at end of file