/*
* InvalidWindowException.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL++2000
#pragma once
#include <sol\Exception.h>
namespace SOL {
class InvalidWindowException :public Exception {
public:
InvalidWindowException(const char* msg, int error =0)
:Exception(msg, error) { }
public:
//2008/07/11
InvalidWindowException(int error, const char* format,...)
:Exception(error) {
va_list pos;
va_start(pos, format);
formatMessage(format, pos);
va_end(pos);
}
~InvalidWindowException() { }
};
}
|