You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sr...@apache.org on 2018/09/11 14:21:48 UTC

[flink] branch master updated: [hotfix][runtime] Remove unused exception class

This is an automated email from the ASF dual-hosted git repository.

srichter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new a97e2f7  [hotfix][runtime] Remove unused exception class
a97e2f7 is described below

commit a97e2f7bbaf338d455218158696f997172772eca
Author: 陈梓立 <wa...@gmail.com>
AuthorDate: Sat Sep 8 00:51:10 2018 +0800

    [hotfix][runtime] Remove unused exception class
    
    This closes #6674.
---
 .../runtime/jobmanager/slots/SlotException.java    | 40 ----------------------
 1 file changed, 40 deletions(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/slots/SlotException.java b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/slots/SlotException.java
deleted file mode 100644
index 48e7e25..0000000
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/slots/SlotException.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * 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.flink.runtime.jobmanager.slots;
-
-import org.apache.flink.util.FlinkException;
-
-/**
- * Base class for slot related exceptions.
- */
-public class SlotException extends FlinkException {
-	private static final long serialVersionUID = -8009227041400667546L;
-
-	public SlotException(String message) {
-		super(message);
-	}
-
-	public SlotException(Throwable cause) {
-		super(cause);
-	}
-
-	public SlotException(String message, Throwable cause) {
-		super(message, cause);
-	}
-}