View Javadoc

1   package com.atlassian.config.wizard;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: ROSS
6    * Date: 15/03/2004
7    * Time: 14:22:10
8    * To change this template use File | Settings | File Templates.
9    */
10  public class StepNotFoundException extends Exception
11  {
12      public StepNotFoundException(String message)
13      {
14          super(message);
15      }
16  
17      public StepNotFoundException(String message, Throwable cause)
18      {
19          super(message, cause);
20      }
21  }