Skip to content

Commit 6f21cd5

Browse files
committed
Adding ParseException
1 parent 2f73866 commit 6f21cd5

File tree

1 file changed

+18
-0
lines changed
  • x-pack/plugin/logsdb/src/main/java/org/elasticsearch/xpack/logsdb/patternedtext/charparser/api

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)