Changeset 892
- Timestamp:
- 10/07/06 12:42:14 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/source/org/kolaka/freecast/setup/ReceiverWizardModel.java
r883 r892 43 43 import org.pietschy.wizard.models.Path; 44 44 import org.pietschy.wizard.models.SimplePath; 45 import org.pietschy.wizard.InvalidStateException; 45 46 46 47 public class ReceiverWizardModel extends MultiPathModel { … … 109 110 } 110 111 111 public void createConfiguration(String type) throws I llegalStateException {112 public void createConfiguration(String type) throws InvalidStateException { 112 113 this.type = type; 113 114 … … 116 117 this.configuration = (SourceReceiverConfiguration) configurationClass.newInstance(); 117 118 } catch (Exception e) { 118 throw new I llegalStateException("Can't create configuration", e);119 throw new InvalidStateException("Can't create configuration", e); 119 120 } 120 121
