Skip to content

Instantly share code, notes, and snippets.

@edwardhotchkiss
Created June 2, 2012 03:42
Show Gist options
  • Save edwardhotchkiss/2856434 to your computer and use it in GitHub Desktop.
Save edwardhotchkiss/2856434 to your computer and use it in GitHub Desktop.
###
@class BaseProject
@description Base Project Class
###
# Dependencies
ErrorHandler = require './ErrorHandler'
# BaseProject Class
class BaseProject
constructor: ->
# gracefully handle errors
@errorHandler = new ErrorHandler()
# end
# end
module.exports = BaseProject
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment