You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You are using throw new ExceptionClass() expression instead of throw ExceptionClass(). It will lead to memory leak if some one will catch exceptions and do work again, because C++ don't have garbage collection.