All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.deltaspike.data.api.QueryInvocationException Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * 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.api;

import java.lang.reflect.Method;

import org.apache.deltaspike.data.spi.QueryInvocationContext;

public class QueryInvocationException extends RuntimeException
{

    private static final long serialVersionUID = 1L;

    public QueryInvocationException(Throwable t, QueryInvocationContext context)
    {
        super(createMessage(context, t), t);
    }

    public QueryInvocationException(String message, QueryInvocationContext context)
    {
        super(createMessage(context));
    }

    public QueryInvocationException(Throwable t, Class proxy, Method method)
    {
        super(createMessage(proxy, method, t), t);
    }

    private static String createMessage(QueryInvocationContext context)
    {
        StringBuilder builder = new StringBuilder();
        builder.append("Failed calling Repository: [");
        builder.append("Repository=").append(context.getRepositoryClass().getName()).append(",");
        builder.append("entity=").append(context.getEntityClass().getName()).append(",");
        builder.append("method=").append(context.getMethod().getName()).append(",");
        return builder.toString();
    }

    private static String createMessage(QueryInvocationContext context, Throwable t)
    {
        StringBuilder builder = new StringBuilder(createMessage(context));
        builder.append("exception=").append(t.getClass()).append(",message=").append(t.getMessage());
        return builder.toString();
    }

    private static String createMessage(Class repoClass, Method method, Throwable t)
    {
        StringBuilder builder = new StringBuilder();
        builder.append("Exception calling Repository: [");
        builder.append("Repository=").append(repoClass).append(",");
        builder.append("method=").append(method.getName()).append("],");
        builder.append("exception=").append(t.getClass()).append(",message=").append(t.getMessage());
        return builder.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy