Package org.pentaho.platform.plugin.action.mondrian

Examples of org.pentaho.platform.plugin.action.mondrian.MissingParameterException


  }

  public void testMissingParameterException1() {
    startTest();
    info( "Expected: Exception will be caught and thrown as a Missing Parameter Exception" ); //$NON-NLS-1$
    MissingParameterException mpe1 =
        new MissingParameterException( "A test Missing Parameter Exception has been thrown" ); //$NON-NLS-1$
    System.out.println( "Missing Parameter Exception :" + mpe1 ); //$NON-NLS-1$   
    assertTrue( true );
    finishTest();
  }
View Full Code Here


  }

  public void testMissingParameterException2() {
    startTest();
    info( "Expected: A Missing Parameter Exception will be created with Throwable as a parameter" ); //$NON-NLS-1$
    MissingParameterException mpe2 = new MissingParameterException( new Throwable( "This is a throwable exception" ) ); //$NON-NLS-1$
    System.out.println( "Missing Parameter Exception :" + mpe2 ); //$NON-NLS-1$   
    assertTrue( true );
    finishTest();

  }
View Full Code Here

  }

  public void testMissingParameterException3() {
    startTest();
    info( "Expected: Exception will be caught and thrown as a Missing Parameter Exception" ); //$NON-NLS-1$
    MissingParameterException mpe3 =
        new MissingParameterException( "A test Missing Parameter Exception has been thrown", new Throwable() ); //$NON-NLS-1$
    System.out.println( "Missing Parameter Exception :" + mpe3 ); //$NON-NLS-1$   
    assertTrue( true );
    finishTest();

  }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.plugin.action.mondrian.MissingParameterException

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.