congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
NoSuchDelegateException.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.quartz.impl.jdbcjobstore.NoSuchDelegateException
constructor

Best Java code snippets using org.quartz.impl.jdbcjobstore.NoSuchDelegateException.<init> (Showing top 6 results out of 315)

origin: quartz-scheduler/quartz

    addTriggerPersistenceDelegate((TriggerPersistenceDelegate) trigDelClass.newInstance());
  } catch (Exception e) {
    throw new NoSuchDelegateException("Error instantiating TriggerPersistenceDelegate of type: " + trigDelClassName, e);
throw new NoSuchDelegateException("Unknown setting: '" + name + "'");
origin: quartz-scheduler/quartz

    addTriggerPersistenceDelegate((TriggerPersistenceDelegate) trigDelClass.newInstance());
  } catch (Exception e) {
    throw new NoSuchDelegateException("Error instantiating TriggerPersistenceDelegate of type: " + trigDelClassName, e);
throw new NoSuchDelegateException("Unknown setting: '" + name + "'");
origin: quartz-scheduler/quartz

/**
 * <P>
 * Get the driver delegate for DB operations.
 * </p>
 */
protected DriverDelegate getDelegate() throws NoSuchDelegateException {
  synchronized(this) {
    if(null == delegate) {
      try {
        if(delegateClassName != null) {
          delegateClass = getClassLoadHelper().loadClass(delegateClassName, DriverDelegate.class);
        }
        delegate = delegateClass.newInstance();
        
        delegate.initialize(getLog(), tablePrefix, instanceName, instanceId, getClassLoadHelper(), canUseProperties(), getDriverDelegateInitString());
        
      } catch (InstantiationException e) {
        throw new NoSuchDelegateException("Couldn't create delegate: "
            + e.getMessage(), e);
      } catch (IllegalAccessException e) {
        throw new NoSuchDelegateException("Couldn't create delegate: "
            + e.getMessage(), e);
      } catch (ClassNotFoundException e) {
        throw new NoSuchDelegateException("Couldn't load delegate class: "
            + e.getMessage(), e);
      }
    }
    return delegate;
  }
}
origin: quartz-scheduler/quartz

/**
 * <P>
 * Get the driver delegate for DB operations.
 * </p>
 */
protected DriverDelegate getDelegate() throws NoSuchDelegateException {
  synchronized(this) {
    if(null == delegate) {
      try {
        if(delegateClassName != null) {
          delegateClass = getClassLoadHelper().loadClass(delegateClassName, DriverDelegate.class);
        }
        delegate = delegateClass.newInstance();
        
        delegate.initialize(getLog(), tablePrefix, instanceName, instanceId, getClassLoadHelper(), canUseProperties(), getDriverDelegateInitString());
        
      } catch (InstantiationException e) {
        throw new NoSuchDelegateException("Couldn't create delegate: "
            + e.getMessage(), e);
      } catch (IllegalAccessException e) {
        throw new NoSuchDelegateException("Couldn't create delegate: "
            + e.getMessage(), e);
      } catch (ClassNotFoundException e) {
        throw new NoSuchDelegateException("Couldn't load delegate class: "
            + e.getMessage(), e);
      }
    }
    return delegate;
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

  throw new NoSuchDelegateException(
      "Couldn't find delegate constructor: " + e.getMessage());
} catch (InstantiationException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (IllegalAccessException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (InvocationTargetException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (ClassNotFoundException e) {
  throw new NoSuchDelegateException("Couldn't load delegate class: "
      + e.getMessage());
origin: quartz/quartz-all

  throw new NoSuchDelegateException(
      "Couldn't find delegate constructor: " + e.getMessage());
} catch (InstantiationException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (IllegalAccessException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (InvocationTargetException e) {
  throw new NoSuchDelegateException("Couldn't create delegate: "
      + e.getMessage());
} catch (ClassNotFoundException e) {
  throw new NoSuchDelegateException("Couldn't load delegate class: "
      + e.getMessage());
org.quartz.impl.jdbcjobstoreNoSuchDelegateException<init>

Popular methods of NoSuchDelegateException

    Popular in Java

    • Making http post requests using okhttp
    • orElseThrow (Optional)
      Return the contained value, if present, otherwise throw an exception to be created by the provided s
    • setRequestProperty (URLConnection)
    • getResourceAsStream (ClassLoader)
    • ArrayList (java.util)
      ArrayList is an implementation of List, backed by an array. All optional operations including adding
    • TimeZone (java.util)
      TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
    • Timer (java.util)
      Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
    • ImageIO (javax.imageio)
    • JPanel (javax.swing)
    • DateTimeFormat (org.joda.time.format)
      Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
    • Top 17 Plugins for Android Studio
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

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