SoundIOException.cs 274 B

12345678910111213
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace SoundIOSharp
  4. {
  5. public class SoundIOException : Exception
  6. {
  7. internal SoundIOException (SoundIoError errorCode)
  8. : base (Marshal.PtrToStringAnsi (Natives.soundio_strerror ((int) errorCode)))
  9. {
  10. }
  11. }
  12. }