summaryrefslogtreecommitdiffstats
path: root/sandbox/implementation-spring2/src/main/java/org/apache/tuscany/implementation/spring/SpringOperationNotFoundException.java
blob: 36b3e1f786bbce049136c230d00bc901f644df4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.apache.tuscany.implementation.spring;

public class SpringOperationNotFoundException extends Exception {
	
    private static final long serialVersionUID = -1157790036638157554L;
	
	public SpringOperationNotFoundException( String msg ) {
		super( msg );
	}


}