~fredericp/zaluum/rt

« back to all changes in this revision

Viewing changes to org.zaluum.model/src/org/zaluum/model/commands/CommandExecutionException.java

  • Committer: Frederic Perez Ordeig
  • Date: 2010-04-07 07:55:38 UTC
  • mfrom: (308.1.63 wip-scala)
  • Revision ID: frederic@zaluum.com-20100407075538-muaneuoz134fqu5o
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.zaluum.model.commands;
 
2
 
 
3
public class CommandExecutionException extends RuntimeException {
 
4
 
 
5
        public CommandExecutionException(Exception e) {
 
6
                super(e);
 
7
        }
 
8
 
 
9
        private static final long serialVersionUID = 1L;
 
10
 
 
11
}