VIZ++ Class: InvalidArgumentException

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

Source code

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



#pragma once

#include <viz++\Exception.h>


namespace VIZ {

class InvalidArgumentException :public Exception {

public:
  InvalidArgumentException(const char* msg, int error =0)
    :Exception(msg, error) { }

public:
  //2008/07/11
  InvalidArgumentException(int error, const char* format,...)
    :Exception(error) {

    va_list pos; 
    va_start(pos, format);
    formatMessage(format, pos);
    va_end(pos);
   }

  ~InvalidArgumentException() { }
};

}


Last modified: 10 Feb 2017

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