Package ch.qos.logback.core.joran.spi

Examples of ch.qos.logback.core.joran.spi.ActionException


  }

  public void end(InterpretationContext ec, String name) throws ActionException {
    switch(type) {
    case ACTION_EXCEPTION:
      throw new ActionException();
    default:
      throw new IllegalStateException("bad end");
    }
  }
View Full Code Here


      ec.pushObject(fruitShell);
    } catch (Exception oops) {
      inError = true;
      addError(
        "Could not create an FruitShell", oops);
      throw new ActionException(oops);
    }
  }
View Full Code Here

      ec.pushObject(context);
    } catch (Exception oops) {
      inError = true;
      addError(
        "Could not push context", oops);
      throw new ActionException(oops);
    }
  }
View Full Code Here

      ec.pushObject(statusListener);
    } catch (Exception e) {
      inError = true;
      addError(
        "Could not create an StatusListener of type ["+className+"].", e);
      throw new ActionException(e);
    }
   
  }
View Full Code Here

      ec.pushObject(appender);
    } catch (Exception oops) {
      inError = true;
      addError("Could not create an Appender of type [" + className + "].",
          oops);
      throw new ActionException(oops);
    }
  }
View Full Code Here

      ec.pushObject(appender);
    } catch (Exception oops) {
      inError = true;
      addError("Could not create an Appender of type [" + className + "].",
          oops);
      throw new ActionException(oops);
    }
  }
View Full Code Here

      ec.pushObject(matcher);
    } catch (Exception oops) {
      inError = true;
      addError("Could not attach matcher to JaninoEvenyEvaluator",
          oops);
      throw new ActionException(ActionException.SKIP_CHILDREN, oops);
    }
  }
View Full Code Here

      ec.pushObject(appender);
    } catch (Exception oops) {
      inError = true;
      addError(
        "Could not create an Appender of type ["+className+"].", oops);
      throw new ActionException(ActionException.SKIP_CHILDREN, oops);
    }
  }
View Full Code Here

      ec.pushObject(appender);
    } catch (Exception oops) {
      inError = true;
      addError("Could not create an Appender of type [" + className + "].",
          oops);
      throw new ActionException(oops);
    }
  }
View Full Code Here

      ec.pushObject(statusListener);
    } catch (Exception e) {
      inError = true;
      addError(
        "Could not create an StatusListener of type ["+className+"].", e);
      throw new ActionException(e);
    }
   
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.joran.spi.ActionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.