YAPOG  0.0.1
Yet Another Pokemon Online Game
InvalidMethodCallException.cpp
Go to the documentation of this file.
2 
3 namespace yap
4 {
6  "Invalid call to: `";
8  "'";
9 
11  const String& methodName)
12  : Exception (DEFAULT_MESSAGE_PREFIX +
13  methodName +
14  DEFAULT_MESSAGE_SUFFIX)
15  {
16  }
17 
19  {
20  }
21 
23  const InvalidMethodCallException& copy)
24  : Exception (copy)
25  {
26  }
27 
29  const InvalidMethodCallException& copy)
30  {
31  if (this == &copy)
32  return *this;
33 
35 
36  return *this;
37  }
38 } // namespace yap