1 package com.eviware.soapui.impl.wsdl.mock;
2
3 @SuppressWarnings("serial")
4 public class MockRunnerManagerException extends Throwable
5 {
6 public MockRunnerManagerException(String msg)
7 {
8 super(msg);
9 }
10
11 public MockRunnerManagerException(String msg, Throwable ex)
12 {
13 super(msg, ex);
14 }
15
16 }