We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f73866 commit 6f21cd5Copy full SHA for 6f21cd5
x-pack/plugin/logsdb/src/main/java/org/elasticsearch/xpack/logsdb/patternedtext/charparser/api/ParseException.java
@@ -0,0 +1,18 @@
1
+/*
2
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
+ * or more contributor license agreements. Licensed under the Elastic License
4
+ * 2.0; you may not use this file except in compliance with the Elastic License
5
+ * 2.0.
6
+ */
7
+
8
+package org.elasticsearch.xpack.logsdb.patternedtext.charparser.api;
9
10
+/**
11
+ * Exception thrown when a parsing operation fails.
12
13
+public class ParseException extends Exception {
14
15
+ public ParseException(String message) {
16
+ super(message);
17
+ }
18
+}
0 commit comments