Coverage Report - org.argouml.model.euml.NotYetImplementedException
 
Classes in this File Line Coverage Branch Coverage Complexity
NotYetImplementedException
0%
0/4
N/A
1
 
 1  
 // $Id: NotYetImplementedException.java 18220 2010-04-08 20:37:15Z tfmorris $
 2  
 /*******************************************************************************
 3  
  * Copyright (c) 2007,2010 Tom Morris and other contributors
 4  
  * All rights reserved. This program and the accompanying materials
 5  
  * are made available under the terms of the Eclipse Public License v1.0
 6  
  * which accompanies this distribution, and is available at
 7  
  * http://www.eclipse.org/legal/epl-v10.html
 8  
  *
 9  
  * Contributors:
 10  
  *    Tom Morris - initial API and implementation
 11  
  *******************************************************************************/
 12  
 
 13  
 package org.argouml.model.euml;
 14  
 
 15  
 import org.argouml.model.NotImplementedException;
 16  
 
 17  
 /**
 18  
  * Runtime exception for things in eUML implementation which are not
 19  
  * yet implemented.  We use NotImplementedException for things which we
 20  
  * never plan to implement and NotYetImplemented for things which we
 21  
  * plan to implement but haven't gotten around to yet.
 22  
  * <p>
 23  
  * When the implementation is complete this class may be removed.
 24  
  * 
 25  
  * @author Tom Morris
 26  
  */
 27  
 class NotYetImplementedException extends NotImplementedException {
 28  
 
 29  
     NotYetImplementedException() {
 30  0
         super();
 31  0
     }
 32  
     
 33  
     NotYetImplementedException(String message) {
 34  0
         super(message);
 35  0
     }
 36  
 
 37  
 }