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

com.microsoft.semantickernel.services.ServiceNotFoundException Maven / Gradle / Ivy

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

import com.microsoft.semantickernel.exceptions.SKCheckedException;

/**
 * Exception thrown when a service is not found.
 */
public class ServiceNotFoundException extends SKCheckedException {

    /**
     * Initializes a new instance of the {@link ServiceNotFoundException} class.
     *
     * @param s A message which describes the service that could not be found.
     */
    public ServiceNotFoundException(String s) {
        super(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy