i changed the exception-handling of the new producers and localizers to use the multe...
[mir.git] / source / mir / producer / ProducerFailure.java
1 package mir.producer;
2
3 import multex.Failure;
4
5 public class ProducerFailure extends Failure {
6
7   public ProducerFailure(String msg,Throwable cause) {
8     super(msg,cause);
9   }
10 }