aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/errors/InvalidPatternException.java
blob: 461c7e3787c7bad67bfd3474d893308a2ac5770f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright (C) 2008, Florian Köberle <florianskarten@web.de>
 * Copyright (C) 2009, Vasyl' Vavrychuk <vvavrychuk@gmail.com> and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.errors;

/**
 * Thrown when a pattern passed in an argument was wrong.
 */
public class InvalidPatternException extends Exception {
	private static final long serialVersionUID = 1L;

	private final String pattern;

	/**
	 * Constructor for InvalidPatternException
	 *
	 * @param message
	 *            explains what was wrong with the pattern.
	 * @param pattern
	 *            the invalid pattern.
	 */
	public InvalidPatternException(String message, String pattern) {
		super(message);
		this.pattern = pattern;
	}

	/**
	 * Constructor for InvalidPatternException
	 *
	 * @param message
	 *            explains what was wrong with the pattern.
	 * @param pattern
	 *            the invalid pattern.
	 * @param cause
	 *            the cause.
	 * @since 4.10
	 */
	public InvalidPatternException(String message, String pattern,
			Throwable cause) {
		this(message, pattern);
		initCause(cause);
	}

	/**
	 * Get the invalid pattern
	 *
	 * @return the invalid pattern.
	 */
	public String getPattern() {
		return pattern;
	}

}