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

com.microsoft.semantickernel.exceptions.SKCheckedException Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.exceptions;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * Provides the base exception from which all CHECKED Semantic Kernel exceptions derive.
 */
public class SKCheckedException extends Exception {

    /**
     * Initializes a new instance of the {@code SKCheckedException} class with a default message.
     */
    protected SKCheckedException() {
        super();
    }

    /**
     * Initializes a new instance of the {@code SKCheckedException} class with its message set to
     * {@code message}.
     *
     * @param message A string that describes the error.
     */
    public SKCheckedException(@Nullable String message) {
        super(message);
    }

    /**
     * Initializes a new instance of the {@code SKCheckedException} class with its message set to
     * {@code message}.
     *
     * @param message A string that describes the error.
     * @param cause   The exception that is the cause of the current exception.
     */
    public SKCheckedException(@Nullable String message, @Nullable Throwable cause) {
        super(message, cause);
    }

    /**
     * Initializes a new instance of the {@code SKCheckedException} class with its
     * message set to {@code null} and the cause set to {@code e}.
     *
     * @param cause The exception that is the cause of the current exception.
     */
    public SKCheckedException(Throwable cause) {
        super(cause);
    }

    /**
     * Forms a checked exception, if the exception is already an SK exception, it
     * will be unwrapped
     * and the cause extracted.
     *
     * @param message The message to be displayed
     * @param cause   The exception that is the cause of the current exception.
     * @return A checked exception
     */
    public static SKCheckedException build(
        String message,
        @Nullable Exception cause) {

        if (cause == null) {
            return new SKCheckedException(message);
        }

        Throwable wrappedCause = cause.getCause();

        if ((cause instanceof SKCheckedException || cause instanceof SKException)
            && wrappedCause != null) {
            return new SKCheckedException(message, wrappedCause);
        } else {
            return new SKCheckedException(message, cause);
        }
    }

    /**
     * Translate the error code into a default message format.
     *
     * @param errorMessage The error message from an error code
     * @param message      The message from the code which throws the exception
     * @return A formatted message
     */
    protected static String formatDefaultMessage(
        @Nonnull String errorMessage, @Nullable String message) {
        return SKException.formatDefaultMessage(errorMessage, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy