Skip to content

Commit

Permalink
Elasticsearch and OpenSearch: made exception classes public
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-learning-dynamo committed Oct 9, 2023
1 parent cf276e8 commit 77d6855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dev.langchain4j.store.embedding.elasticsearch;

class ElasticsearchRequestFailedException extends RuntimeException {
public class ElasticsearchRequestFailedException extends RuntimeException {

public ElasticsearchRequestFailedException() {
super();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dev.langchain4j.store.embedding.opensearch;

class OpenSearchRequestFailedException extends RuntimeException {
public class OpenSearchRequestFailedException extends RuntimeException {

public OpenSearchRequestFailedException() {
super();
Expand Down

0 comments on commit 77d6855

Please sign in to comment.