Tabnine Logo
InvalidPatternException
Code IndexAdd Tabnine to your IDE (free)

How to use
InvalidPatternException
in
org.eclipse.jgit.errors

Best Java code snippets using org.eclipse.jgit.errors.InvalidPatternException (Showing top 14 results out of 315)

origin: org.eclipse.jgit/org.eclipse.jgit

    JGitText.get().characterClassIsNotSupported,
    characterClass);
throw new InvalidPatternException(message, wholePattern);
origin: org.eclipse.jgit/org.eclipse.jgit

} catch (InvalidPatternException e) {
  m = NO_MATCH;
  LOG.error(e.getMessage(), e);
origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * 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);
}
origin: sonia.jgit/org.eclipse.jgit

  throw new InvalidPatternException(
      "Collating symbols [[.a.]] or equivalence class expressions [[=a=]] are not supported", //$NON-NLS-1$
      pattern);
  throw new InvalidPatternException("Not closed bracket?", pattern); //$NON-NLS-1$
try {
  return Pattern.compile(sb.toString());
} catch (PatternSyntaxException e) {
  InvalidPatternException patternException = new InvalidPatternException(
      MessageFormat.format(JGitText.get().invalidIgnoreRule,
          pattern),
      pattern);
  patternException.initCause(e);
  throw patternException;
origin: org.eclipse.jgit/org.eclipse.jgit

  throw new InvalidPatternException(
      "Collating symbols [[.a.]] or equivalence class expressions [[=a=]] are not supported", //$NON-NLS-1$
      pattern);
  throw new InvalidPatternException("Not closed bracket?", pattern); //$NON-NLS-1$
try {
  return Pattern.compile(sb.toString(), Pattern.DOTALL);
} catch (PatternSyntaxException e) {
  throw new InvalidPatternException(
      MessageFormat.format(JGitText.get().invalidIgnoreRule,
          pattern),
origin: gradle.plugin.com.cherryperry.gfe/gradle-file-encrypt

} catch (InvalidPatternException e) {
  m = NO_MATCH;
  LOG.error(e.getMessage(), e);
origin: gradle.plugin.com.cherryperry.gfe/gradle-file-encrypt

/**
 * 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);
}
origin: sonia.jgit/org.eclipse.jgit

    JGitText.get().characterClassIsNotSupported,
    characterClass);
throw new InvalidPatternException(message, wholePattern);
origin: berlam/github-bucket

} catch (InvalidPatternException e) {
  m = NO_MATCH;
  LOG.error(e.getMessage(), e);
origin: berlam/github-bucket

/**
 * 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);
}
origin: berlam/github-bucket

    JGitText.get().characterClassIsNotSupported,
    characterClass);
throw new InvalidPatternException(message, wholePattern);
origin: sonia.jgit/org.eclipse.jgit

} catch (InvalidPatternException e) {
  m = NO_MATCH;
  LOG.error(e.getMessage(), e);
origin: gradle.plugin.com.cherryperry.gfe/gradle-file-encrypt

  throw new InvalidPatternException(
      "Collating symbols [[.a.]] or equivalence class expressions [[=a=]] are not supported", //$NON-NLS-1$
      pattern);
  throw new InvalidPatternException("Not closed bracket?", pattern); //$NON-NLS-1$
try {
  return Pattern.compile(sb.toString(), Pattern.DOTALL);
} catch (PatternSyntaxException e) {
  throw new InvalidPatternException(pattern, pattern, e);
origin: berlam/github-bucket

  throw new InvalidPatternException(
      "Collating symbols [[.a.]] or equivalence class expressions [[=a=]] are not supported", //$NON-NLS-1$
      pattern);
  throw new InvalidPatternException("Not closed bracket?", pattern); //$NON-NLS-1$
try {
  return Pattern.compile(sb.toString(), Pattern.DOTALL);
} catch (PatternSyntaxException e) {
  throw new InvalidPatternException(
      MessageFormat.format(JGitText.get().invalidIgnoreRule,
          pattern),
org.eclipse.jgit.errorsInvalidPatternException

Javadoc

Thrown when a pattern passed in an argument was wrong.

Most used methods

  • <init>
    Constructor for InvalidPatternException
  • getMessage
  • initCause

Popular in Java

  • Running tasks concurrently on multiple threads
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setContentView (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • IsNull (org.hamcrest.core)
    Is the value null?
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now