diff options
| author | Carver Harrison <[email protected]> | 2016-07-24 11:17:36 -0700 |
|---|---|---|
| committer | Carver Harrison <[email protected]> | 2016-07-24 11:17:36 -0700 |
| commit | bf7a488011c09be39bdb4980c2bb020cb1fdb71a (patch) | |
| tree | 15babb7b44c458fa5edbdbdb90e70c9ac3cb6999 /source/WindowsFormsApplication1/Program.cs | |
| parent | 69fe691ea6111d1009f9a0ac49b162c36070e64e (diff) | |
| download | shiftos-c--bf7a488011c09be39bdb4980c2bb020cb1fdb71a.tar.gz shiftos-c--bf7a488011c09be39bdb4980c2bb020cb1fdb71a.tar.bz2 shiftos-c--bf7a488011c09be39bdb4980c2bb020cb1fdb71a.zip | |
Added Hashing API and Fixed Bugs
Diffstat (limited to 'source/WindowsFormsApplication1/Program.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/Program.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source/WindowsFormsApplication1/Program.cs b/source/WindowsFormsApplication1/Program.cs index af294db..e6c4c23 100644 --- a/source/WindowsFormsApplication1/Program.cs +++ b/source/WindowsFormsApplication1/Program.cs @@ -40,10 +40,10 @@ namespace ShiftOS int port = Convert.ToInt32(addSplitter[1]); Package_Grabber.ConnectToServer(host, port); } - catch - { - - } + catch (Exception catcherror) + { + Console.WriteLine(catcherror); + } } } catch @@ -129,10 +129,10 @@ namespace ShiftOS } } } - catch - { - - } + catch (Exception e) + { + Console.WriteLine(e); + } } |
