The exception that is thrown when there is an attempt to create a Channel or Container with a name that is not valid.

Namespace:  IBM.CTG
Assembly:  IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 1.0.0.0

Syntax

C#
[SerializableAttribute]
public class InvalidNameException : ArgumentException
Visual Basic
<SerializableAttribute> _
Public Class InvalidNameException _
	Inherits ArgumentException
Visual C++
[SerializableAttribute]
public ref class InvalidNameException : public ArgumentException

Remarks

Channel and Container names must be between 1 and 16 characters in length and must consist of only the following types of character:

  • Uppercase characters (A-Z)
  • Lowercase characters (a-z)
  • Digits (0-9)
  • Special characters < > $ @ # / % & ? ! : | \ " = ' ; . - and _

Inheritance Hierarchy

System..::..Object
  System..::..Exception
    System..::..SystemException
      System..::..ArgumentException
        IBM.CTG..::..InvalidNameException

Thread Safety

Members of this type are thread safe.

See Also