// js/util/log/appender/Abstract.js
//
// Created: 03.02.2011 (pj)
///////////////////////////////////////////////////////////////////////////////



pj.log.appender.Abstract = function()
{
    this.log = function(message)
    {
        throw "Abstract function call";
    };
};
