i changed the exception-handling of the new producers and localizers to use the multe...
[mir.git] / source / mircoders / producer / NullProducer.java
1 package mircoders.producer;
2
3 import java.io.*;
4 import mir.producer.*;
5
6 public class NullProducer implements mir.producer.Producer {
7   public NullProducer() {
8   }
9
10   public void produce( PrintWriter aLogger ) throws ProducerFailure {
11   }
12 }
13
14
15