14 lines
247 B
C#
14 lines
247 B
C#
using System;
|
|
|
|
namespace Exceptionhandling
|
|
{
|
|
public class YouTubeException : Exception
|
|
{
|
|
public YouTubeException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
|
|
}
|