VIZ++ Class: AlreadyOpenedException

 VIZ++ Class Library  VIZ++ Samples  VIZ++ ClassTree 

Source code

/*
 * AlreadyOpenedException.h 
 * Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. 
 */


#pragma once

#include <viz++\Exception.h>


namespace VIZ {

class AlreadyOpenedException :public Exception {

public:
  AlreadyOpenedException(const char* msg, int error =0)
    :Exception(msg, error) { }
public:
  //2008/07/11
  AlreadyOpenedException(int error, const char* format,...)
    :Exception(error) {

    va_list pos; 
    va_start(pos, format);
    formatMessage(format, pos);
    va_end(pos);
   }
  ~AlreadyOpenedException() { }
};

}


Last modified: 10 Feb 2017

Copyright (c) 2009-2017 Antillia.com ALL RIGHTS RESERVED.