Add FullSkeleton example

This commit is contained in:
flithm 2007-08-29 11:24:39 +00:00
commit c315c3f0d3
75 changed files with 4452 additions and 0 deletions

View file

@ -0,0 +1,40 @@
/**
*
* Exception Class
*
* Authors: Tim Burrell
* Copyright: Copyright (c) 2007
* License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
*
**/
////////////////////////////////////////////////////////////////////////////
// Module
///////////////////////////////////////
module libraryA.core.Exception;
////////////////////////////////////////////////////////////////////////////
// Imports
///////////////////////////////////////
import tango.core.Exception;
////////////////////////////////////////////////////////////////////////////
// Typedef's / Enums
///////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// Exception Classes
///////////////////////////////////////
/**
* PathNotFoundException Class
**/
class PathNotFoundException : IOException {
/// Default Constructor
this (char [] Message) {
super(Message);
}
}