Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 22F46200CC9 for ; Mon, 17 Jul 2017 14:46:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 21D42164E4C; Mon, 17 Jul 2017 12:46:00 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4616B164E0F for ; Mon, 17 Jul 2017 14:45:58 +0200 (CEST) Received: (qmail 51242 invoked by uid 500); 17 Jul 2017 12:45:57 -0000 Mailing-List: contact commits-help@polygene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@polygene.apache.org Delivered-To: mailing list commits@polygene.apache.org Received: (qmail 50685 invoked by uid 99); 17 Jul 2017 12:45:56 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jul 2017 12:45:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5EF1AF5561; Mon, 17 Jul 2017 12:45:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulmerlin@apache.org To: commits@polygene.apache.org Date: Mon, 17 Jul 2017 12:46:09 -0000 Message-Id: <1e7a4c7c08ae4905b2b9250fba82ffab@git.apache.org> In-Reply-To: <3fd3094d4e4342f1bf72e281f66a5cca@git.apache.org> References: <3fd3094d4e4342f1bf72e281f66a5cca@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [17/50] [abbrv] polygene-java git commit: Added IndexingException, since no organized exception hierarchy exists for that. archived-at: Mon, 17 Jul 2017 12:46:00 -0000 Added IndexingException, since no organized exception hierarchy exists for that. Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/9778ca0f Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/9778ca0f Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/9778ca0f Branch: refs/heads/master Commit: 9778ca0f13c9151591014a8d0facacf8e560ec46 Parents: 58b8174 Author: niclas Authored: Sun Jul 9 12:37:44 2017 +0800 Committer: niclas Committed: Sun Jul 9 12:37:44 2017 +0800 ---------------------------------------------------------------------- .../polygene/spi/query/IndexingException.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/9778ca0f/core/spi/src/main/java/org/apache/polygene/spi/query/IndexingException.java ---------------------------------------------------------------------- diff --git a/core/spi/src/main/java/org/apache/polygene/spi/query/IndexingException.java b/core/spi/src/main/java/org/apache/polygene/spi/query/IndexingException.java new file mode 100644 index 0000000..6fc8124 --- /dev/null +++ b/core/spi/src/main/java/org/apache/polygene/spi/query/IndexingException.java @@ -0,0 +1,17 @@ +package org.apache.polygene.spi.query; + +/** + * This is the exception for Indexing problems. Subtypes should be created for specific problems. + * + */ +public abstract class IndexingException extends RuntimeException +{ + public IndexingException( String message ) + { + super( message ); + } + public IndexingException( String message, Throwable cause ) + { + super( message, cause ); + } +}