Beispiel #1
0
 public InvalidManagedUnrealAttributeException(MemberInfo member, ManagedUnrealAttributeBase attribute)
     : base("Failed to handle attribute on member '" + member.DeclaringType.FullName + ":" +
            member.Name + "' Reason: " + attribute.InvalidTargetReason)
 {
 }
Beispiel #2
0
 public InvalidManagedUnrealAttributeException(MethodInfo method, ParameterInfo parameter, ManagedUnrealAttributeBase attribute)
     : base("Failed to handle attribute on parameter '" + method.DeclaringType.FullName + ":" +
            method + "." + parameter.Name + "' Reason: " + attribute.InvalidTargetReason)
 {
 }
Beispiel #3
0
 public InvalidManagedUnrealAttributeException(Type type, ManagedUnrealAttributeBase attribute)
     : base("Failed to handle attribute on type '" + type.FullName + "' Reason: " +
            attribute.InvalidTargetReason)
 {
 }