View Javadoc

1   /*
2    * Copyright (c) 2005, The K-Wf Grid Consortium
3    * Fraunhofer Institute for Computer Architecture and Software Technology
4    * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
5    */
6   package net.kwfgrid.gwes.uiproxy;
7   
8   /**
9      Exception indicating a problem during (un)marshalling of a message.
10   */
11  public class CodecException extends Exception {   
12      public CodecException(String message) {
13  	super(message);
14      }
15  }