Skip to content

Instantly share code, notes, and snippets.

View sammy-SC's full-sized avatar

Samuel Susla sammy-SC

View GitHub Profile
@sammy-SC
sammy-SC / expcetions.cpp
Last active December 17, 2015 00:00
ukazky na test.
#include <iostream>
#include <string>
using namespace std;
class CException{
const string message;
public:
CException(const string & message): message(message) {} // string message sa vytvara pri vytvarani CException
friend ostream & operator << ( ostream & os, const CException & x )
{