Repository: deltaspike
Updated Branches:
  refs/heads/master 46a3b6759 -> 3e39a2c4c


DELTASPIKE-1070 removed unused class

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

Branch: refs/heads/master
Commit: 96c6ba2af7a16368c66a8326e0a474e9d1ded2c0
Parents: 46a3b67
Author: Thomas Andraschko <tandrasc...@apache.org>
Authored: Sun Jun 4 11:01:19 2017 +0200
Committer: Thomas Andraschko <tandrasc...@apache.org>
Committed: Sun Jun 4 11:01:19 2017 +0200

----------------------------------------------------------------------
 .../data/impl/meta/NonEntityException.java      | 46 --------------------
 1 file changed, 46 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/96c6ba2a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/NonEntityException.java
----------------------------------------------------------------------
diff --git 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/NonEntityException.java
 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/NonEntityException.java
deleted file mode 100644
index bdcfdaa..0000000
--- 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/NonEntityException.java
+++ /dev/null
@@ -1,46 +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.deltaspike.data.impl.meta;
-
-public class NonEntityException extends RuntimeException
-{
-
-    private static final long serialVersionUID = 1L;
-
-    public NonEntityException()
-    {
-        super();
-    }
-
-    public NonEntityException(String message)
-    {
-        super(message);
-    }
-
-    public NonEntityException(Throwable cause)
-    {
-        super(cause);
-    }
-
-    public NonEntityException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-
-}

Reply via email to